RE: [users@httpd] TLS1.2

2017-05-16 Thread Darryl Philip Baker
Turn off SSLv3 and TLS 1.0. Borrowed config: SSLEngine on SSLCertificateFile "/etc/httpd/certs/facultyrecruitingqa_northwestern_edu_cert.cer" SSLCertificateKeyFile "/etc/httpd/certs/key.pem" # "Modern" configuration, defined by the Mozilla Foundation's SSL

Re: [users@httpd] TLS1.2

2017-05-16 Thread Daniel
HTTPD will support it if OpenSSL supports it. 2017-05-16 21:04 GMT+02:00 ANKIT PALRECHA : > Hello Team, > > Any idea how can we test if apache supports TLS1.1 and TLS1.2? > > > This is bundled with openssl? > > > Please share detail on tls , how to test? > > Thanks >

[users@httpd] TLS1.2

2017-05-16 Thread ANKIT PALRECHA
Hello Team, Any idea how can we test if apache supports TLS1.1 and TLS1.2? This is bundled with openssl? Please share detail on tls , how to test? Thanks Ankit Jain +91-9741336404

Re: [users@httpd] Need help in change of context root while redirecting url

2017-05-16 Thread Sailaja Gadireddy
Thanks Eric.. As we do not have pre prod environment, wanted to check before trying it. I will check and update. Thanks & regards, Sailaja On Tue, May 16, 2017 at 10:09 PM, Eric Covener wrote: > On Tue, May 16, 2017 at 12:24 PM, Sailaja Gadireddy >

Re: [users@httpd] Need help in change of context root while redirecting url

2017-05-16 Thread Eric Covener
On Tue, May 16, 2017 at 12:24 PM, Sailaja Gadireddy wrote: > Hello Team, > > I have a requirement to change the context root in the url when redirecting. > > For example: If user hits the url https://www.xyz.com/abc/def > It should redirect to

[users@httpd] Need help in change of context root while redirecting url

2017-05-16 Thread Sailaja Gadireddy
Hello Team, I have a requirement to change the context root in the url when redirecting. For example: If user hits the url https://www.xyz.com/abc/def It should redirect to https://www.xyz.com/ghi/jkl. from url: https://www.xyz.com/*abc/def *--> https://www.xyz.com/ *ghi/jkl* Please help me if

Re: [users@httpd] Getting PHP-FPM working

2017-05-16 Thread John Iliffe
Yes, chroot = / I just sent a (really big!) strace file to this list that shows (I think) that the request is including more than just the file name. I'm hoping it makes sense to someone. Regards, John = On Tuesday 16 May 2017 04:19:08 Christian Hettler

Re: [users@httpd] Re: How to proxy web server?

2017-05-16 Thread Daniel
Just add this line first: ProxyPass /.well-known ! You use the path and ! to specify this as an exception to not proxy. Always try to define ProxyPass in virtualhost (without location), as you show possibility A is the simpler one for me, less hassle assured, less convoluted, imo. 2017-05-16

[users@httpd] Re: How to customize error responses (while using mod_rewrite)?

2017-05-16 Thread Jens Schleusener
On Mon, 15 May 2017, Jens Schleusener wrote: On Mon, 15 May 2017, Eric Covener wrote: On Mon, May 15, 2017 at 12:32 PM, Jens Schleusener wrote: Ok, in that case one could use the ErrorDocument directive (it works for me principally) but how can one can achieve

[users@httpd] Re: How to proxy web server?

2017-05-16 Thread Florian Lindner
Am 15.05.2017 um 17:05 schrieb Florian Lindner: > Hello, > > Apache 2.4 on Debian Testing, mpm_itk > > I have the Discourse web forum running in a docker container. The container's > webserver is bount to localhost:2080. The > forum should be reachable at either forum.csc-stuttgart.org or >

Re: [users@httpd] Getting PHP-FPM working

2017-05-16 Thread Christian Hettler
hello John, Is ChrootDir activated? regards, Christian On Mon, May 15, 2017 at 10:42:37AM -0400, John Iliffe wrote: > Hi Christian: > > I just noticed that you put "" around the parameters to ProxyPassMatch. > > I tried that and no change in the results. > > John >