Subscribe

2014-10-27 Thread 林晓峰
Hello, HAPoxy

Pointer arithmetic with void * pointers

2014-10-27 Thread Pascal Cuoq
Hello all, The file include/common/mini-clist.h contains useful macros to deal with linked lists. One line that we stumbled on is the definition of macro LIST_ELEM(), which computes the address of a node from the address of one of its members:

Haproxy Fontend:80 Backend:443

2014-10-27 Thread npel...@unr.edu.ar
I need help to configure haproxy to do simple task in Apache: # Cert is selfsigned SSLProxyMachineCertificateFile /home/ubuntu/generic_cert.pem Location /service1/ Proxypass https://10.0.0.1:8550/serviceA/; ProxyPassReverse https://10.0.0.1:8550/serviceA/; /Location # I

RE: Haproxy Fontend:80 Backend:443

2014-10-27 Thread Lukas Tribus
Hi, backend test_a option httpchk http-request set-header Host 10.0.0.1 reqrep ^([^\ ]*)\ /service1(.*) \1\ /serviceA\2 rspirep ^(Location:)\ https://([^/]*)/(.*)$\1\ http://\2/service1/\3 server one 10.0.0.1:8550 The problem: The site

RE: Haproxy Fontend:80 Backend:443

2014-10-27 Thread npel...@unr.edu.ar
Hi Lukas, I changed: server one 10.0.0.1:8550 by server one 10.0.0.1:8550 ssl verify none but error persist. I check service with: curl --insecure -E test.pem https://10.0.0.1:8550/serviceA/myapp?wsdl // Work Ok curl --insecure www.example.com/service1/myapp?wsdl // Fail curl --insecure -E

RE: Haproxy Fontend:80 Backend:443

2014-10-27 Thread Lukas Tribus
I check service with: curl --insecure -E test.pem https://10.0.0.1:8550/serviceA/myapp?wsdl // Work Ok curl --insecure www.example.com/service1/myapp?wsdl // Fail curl --insecure -E test.pem www.example.com/service1/myapp?wsdl // Fail In haproxy how repalce the

Re: redirect POST to GET?

2014-10-27 Thread Paul McIntire
Hi This redirect seems to work but now due to scope creep I need to pass a signed request parameter submitted as POST data in the initial request to the GET method as an argument. Any advice? https://developers.facebook.com/docs/facebook-login/using-login-with-games Regards Paul On Tue,