Re: [users@httpd] cgi script error output logging

2017-05-17 Thread KASPAR Sandro
To make sure it is not an OS specific problem I tested the same on ubuntu 16.04 with apache2.4.18 and mod_fcgid 2.3.9. Same problem there. If you have any other ideas I could try I would appreciate it. Sandro From: KASPAR Sandro Sent:

[users@httpd] Re: SSL Installation with certbot; problems

2017-05-17 Thread James Kerwin
I feel odd replying to my own question... but before any kind people spend time helping: I have resolved the issue. Somewhere along the way my apache2.conf file had the "IncludeOptional sites-enabled/*.conf" attribute commented out. A good lesson in checking the basics before requesting help...

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

2017-05-17 Thread John Iliffe
Hi Christian: It didn't work and I think there is something that I am failing to understand here so, with your forbearance, let me explain my set up and what I'm actually trying to do. I got a "Not Found" error when I tried your suggestion. Configuration: on directory /httpd are the

[users@httpd] SSL Installation with certbot; problems

2017-05-17 Thread James Kerwin
Hello all, Firstly, I'm a bit of a beginner so please be as patient as you can. I set up a practice website that sent data collected from a form to a database. It worked. I then tried to install an SSL certificate for better security. Unfortunately it didn't work (when typing URL my browser

[users@httpd] Re: Help needed on using python script from Apache Rewrite configuration

2017-05-17 Thread Debananda Pal -X (debanapa - WIPRO LIMITED at Cisco)
Hi, I have changed the calling script in below way : RewriteRule "-" "${path:%{ENV:vrg}}" But in python script, not able to retrieve the value of "vrg". ?Kindly send a sample code in python to get the value and pass a return string back to rewrite module. Regards, D Pal

Re: [users@httpd] cgi script error output logging

2017-05-17 Thread KASPAR Sandro
Hi Petr, Thank you for your help. I tried your tests on [1]. I tested everything wiht apache 2.4.25 and mod_fcgid 2.3.9 and apache 2.4.25 and mod_cgi. In both cases I get the same behaviour. Everything sent to stderr, in this case "I am an ERROR", is written to the apache error log without

[users@httpd] Re: TLS1.2

2017-05-17 Thread Jens Schleusener
Hi, nmap is not present ,hence unable to run that query you gave. Do we have any other option to validate this? I have Apache version: Server version: Apache/2.4.18 (Win32) Another option may be the client "curl" which offers the options "--tlsv1", "--tlsv1.0", "--tlsv1.1" and "--tlsv1.2"

Re: [users@httpd] TLS1.2

2017-05-17 Thread Daniel
curl has similar parameters to test different SSL protocols. 2017-05-17 13:26 GMT+02:00 ANKIT PALRECHA : > Hi Daniel, > > Thanks for your suggestion. > > Yes I have default Apache installation in one of my software component. > Apache with Tomcat. > > And installation

Re: [users@httpd] TLS1.2

2017-05-17 Thread ANKIT PALRECHA
Hi Daniel, Thanks for your suggestion. Yes I have default Apache installation in one of my software component. Apache with Tomcat. And installation went well and also application running fine. What else we can check to know openssl support tls1.2? Thanks Ankit Jain +91-9741336404 On Wed,

Re: [users@httpd] TLS1.2

2017-05-17 Thread Daniel
Make sure your openssl installation is correct. 2017-05-17 13:11 GMT+02:00 ANKIT PALRECHA : > Hi Daniel, > > I see below message when I query: > > C:\CA\secure-proxy\httpd\bin>openssl s_client -tls1 -connect IP:443 > WARNING: can't open config file:

Re: [users@httpd] TLS1.2

2017-05-17 Thread ANKIT PALRECHA
Hi Daniel, I see below message when I query: C:\CA\secure-proxy\httpd\bin>openssl s_client -tls1 -connect IP:443 WARNING: can't open config file: c:\openSSL_102g\compileBin/ssl/openssl.cnf connect: No such file or directory connect:errno=0 Thanks Ankit Jain +91-9741336404 On Wed, May 17,

Re: [users@httpd] TLS1.2

2017-05-17 Thread Daniel
just use openssl to query your server hint: openssl s_client -tls1 -connect ip:port 2017-05-17 12:04 GMT+02:00 ANKIT PALRECHA : > Hello Marat, > > Thanks for your response, but it is internal and not Public facing. > > > > > Ankit Jain > +91-9741336404 > > On Wed, May

[users@httpd] Help needed on using python script from Apache Rewrite configuration

2017-05-17 Thread Debananda Pal -X (debanapa - WIPRO LIMITED at Cisco)
Hi, I have Server version: Apache/2.2.31 (Unix) and trying to pass few arguments from Apache rewrite conf file to Python (version 2.6) script. Also, I want to process the python output in rewrite configuration file. Please let me know, how can I pass variables to python script and retrieve

Re: [users@httpd] TLS1.2

2017-05-17 Thread ANKIT PALRECHA
Hello Marat, Thanks for your response, but it is internal and not Public facing. Ankit Jain +91-9741336404 On Wed, May 17, 2017 at 2:00 PM, Marat Khalili wrote: > And, for completeness, if your server is public-facing (no pages need to > be available, being able to connect is

Re: [users@httpd] TLS1.2

2017-05-17 Thread ANKIT PALRECHA
Hi Akshar, nmap is not present ,hence unable to run that query you gave. Do we have any other option to validate this? I have Apache version: Server version: Apache/2.4.18 (Win32) Thanks Ankit Jain +91-9741336404 On Wed, May 17, 2017 at 1:30 PM, Akshar Kanak wrote:

Re: [users@httpd] TLS1.2

2017-05-17 Thread Marat Khalili
And, for completeness, if your server is public-facing (no pages need to be available, being able to connect is enough): https://www.ssllabs.com/ssltest/ -- With Best Regards, Marat Khalili On 16/05/17 22:04, ANKIT PALRECHA wrote: Hello Team, Any idea how can we test if apache supports

Re: [users@httpd] TLS1.2

2017-05-17 Thread Akshar Kanak
Hi After making the configuration in ssl.conf , you can use nmap script to check if HTTPS server is actually supporting it or not . https://nmap.org/nsedoc/scripts/ssl-enum-ciphers.html Thanks and regards Akshar On Wed, May 17, 2017 at 12:34 AM, ANKIT PALRECHA

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

2017-05-17 Thread Christian Hettler
hello John, a Proxy-request didn't rewrite the url. If you have http://my.example.com/myapp/script.php then you can configure with ProxyPassMatch: ProxyPassMatch "^/myapp/.*\.php(/.*)?$" "fcgi://localhost:9000/var/www/" where script.php is located at /var/www/myapp/script.php The parenthesis