Re: [users@httpd] ESTABLISHED connections

2015-03-13 Thread Mark Montague
to 111.10.250.188. If you want to prevent the client from connecting, instead of restricting what the client is allowed to request after it connects, use a firewall. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail

Re: [users@httpd] Apache Unix

2014-12-29 Thread Mark Montague
are all equivalent: /usr/private /usr//private /usr/private/ /usr/private/ For more reading, see http://teaching.idallen.com/cst8207/12f/notes/160_pathnames.html -- Mark Montague m...@catseye.org

Re: [users@httpd] Can I change how mod_disk_cache stores content on disk?

2014-09-18 Thread Mark Montague
https://httpd.apache.org/docs/2.4/programs/htcacheclean.html If this doesn't meet your need, you might want to look into writing your own module to do exactly what you need for your experiment. -- Mark Montague m...@catseye.org

Re: [users@httpd] How to configure http and https for same hostname

2013-03-13 Thread Mark Montague
/ -- Mark Montague m...@catseye.org

Re: [users@httpd] trivial but annoying; no _GET

2013-03-13 Thread Mark Montague
server. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] My SSL Certificate is not working properly

2012-12-04 Thread Mark Montague
web browser and check in your web server access log to find out what, specifically, is being requested over HTTP. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org

Re: [users@httpd] My SSL Certificate is not working properly

2012-12-04 Thread Mark Montague
directives that you already have /VirtualHost -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] My SSL Certificate is not working properly

2012-12-04 Thread Mark Montague
HTTPS instead. To find out what content on your page is being served to you via HTTPS, see http://stackoverflow.com/questions/2632983/any-tool-available-to-detect-whats-not-https-on-an-encrypted-page -- Mark Montague m...@catseye.org

Re: [users@httpd] Apache 2.4 stability ErrorLogFormat

2012-11-29 Thread Mark Montague
. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Apache 2.4 stability ErrorLogFormat

2012-11-29 Thread Mark Montague
#errorlog ) Or you may find it easiest to upgrade to Apache HTTP Server 2.4. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h

Re: [users@httpd] Setting REMOTE_USER to %{SSL:HTTP_SSL_CLIENT_S_DN_CN}

2012-11-05 Thread Mark Montague
%{SSL:HTTP_SSL_CLIENT_S_DN_CN} (.+) RewriteRule ^.*$ - [E=REMOTE_USER:$1] Tried some variations, but it does not :-( Could someone help me out with this? Remove those mod_rewrite directives. Instead, use SSLUserName SSL_CLIENT_S_DN_CN See https://httpd.apache.org/docs/2.4/mod/mod_ssl.html#sslusername -- Mark

Re: [users@httpd] Setting REMOTE_USER to %{SSL:HTTP_SSL_CLIENT_S_DN_CN}

2012-11-05 Thread Mark Montague
On November 5, 2012 10:24 , Martin Drescher dresc...@snafu.de wrote: On 05/11/12 14:35, Mark Montague wrote: On November 5, 2012 6:32 , Martin Drescher dresc...@snafu.de wrote: I would like to set the REMOTE_USER environment to the value of %{HTTP_SSL_CLIENT_S_DN_CN}. SSLUserName

Re: [users@httpd] OpenSSL vs. Mozilla's NSS

2012-10-24 Thread Mark Montague
mod_ssl with OpenSSL but use whatever software you want to use for managing your certificates. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users

Re: [users@httpd] apache access permission

2012-10-18 Thread Mark Montague
to clients. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] apache access permission

2012-10-17 Thread Mark Montague
else other than the user apache home directory, the -i option to ssh will allow you to do this. See the ssh manual page for more information. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr

Re: [users@httpd] Re: Client certificate authentication issues

2012-10-15 Thread Mark Montague
connections, and renegotiation should never be triggered. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] RewriteCond - Multiple matches

2012-10-15 Thread Mark Montague
the regular expression you are using to see if you have an error in it. If you post the relevant configuration directives here, list members can have a look at them. Be sure to include which version of Apache HTTP Server you are using. -- Mark Montague m...@catseye.org

Re: [users@httpd] Mac OS X and SSL Client Certitficates

2012-10-15 Thread Mark Montague
this worked just fine with Firefox 15 under MacOS X, so I don't think this is the only source of your problem with Safari client certificates). Sorry I don't have any better advice. -- Mark Montague m...@catseye.org

Re: [users@httpd] Re: RewriteCond - Multiple matches

2012-10-15 Thread Mark Montague
. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Re: Client certificate authentication issues

2012-10-09 Thread Mark Montague
hope this helps. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] SSL Client Certificates and CGI

2012-10-01 Thread Mark Montague
On October 1, 2012 5:41 , Tom Browder tom.brow...@gmail.com wrote: On Sun, Sep 30, 2012 at 7:44 PM, Mark Montague m...@catseye.org wrote: On September 30, 2012 19:45 , Tom Browder tom.brow...@gmail.com wrote: Does anyone have a pointer to help on restricting a directory to access only

Re: [users@httpd] SSL Client Certificates and CGI

2012-10-01 Thread Mark Montague
Location), the directives inside the Directory stanza, and then the URL that, when a client requests it, results in access being granted despite the client not presenting a certificate. -- Mark Montague m...@catseye.org

Re: [users@httpd] SSL Client Certificates and CGI

2012-10-01 Thread Mark Montague
On October 1, 2012 14:58 , Tom Browder tom.brow...@gmail.com wrote: On Mon, Oct 1, 2012 at 10:53 AM, Mark Montague m...@catseye.org wrote: On October 1, 2012 9:17 , Tom Browder tom.brow...@gmail.com wrote: Inside the restricted area I have: SSLVerifyClient require I have found

Re: [users@httpd] SSL Client Certificates and CGI

2012-10-01 Thread Mark Montague
documentation contains examples of serving CGIs from underneath DocumentRoot and also user home directories: https://httpd.apache.org/docs/2.4/howto/cgi.html -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr

Re: [users@httpd] SSL Client Certificates and CGI

2012-09-30 Thread Mark Montague
user that CGIs run as. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Apache2 - Logging

2012-09-24 Thread Mark Montague
should apply only to proxied requests). Or you can put most directives directly into the server config context or a virtual host context, in order to have the directives apply to all requests. For more information, see https://httpd.apache.org/docs/2.4/sections.html -- Mark Montague m

Re: [users@httpd] rotatelogs: does it create directories?

2012-09-20 Thread Mark Montague
, as it does now. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] DirectoryIndex fails to serve file to proxy (php-fpm, proxy_fcgi_module)

2012-09-18 Thread Mark Montague
that is missing is missing from PHP, not from Apache HTTP Server. But there are workarounds that you can do in Apache HTTP Server, such as the mod_rewrite based workaround that I discuss above. -- Mark Montague m...@catseye.org

Re: [users@httpd] DirectoryIndex fails to serve file to proxy (php-fpm, proxy_fcgi_module)

2012-09-16 Thread Mark Montague
currently does both with cgi.fix_pathinfo=1 and cgi.fix_pathinfo=0 and replaces it all with what I personally believe PHP should do according to RFC 3875 with no regard for any sort of backward compatibility. Feedback is welcome. -- Mark Montague m...@catseye.org diff -up php-5.4.6/sapi/fpm

Re: [users@httpd] Download breaks in the middle

2012-09-14 Thread Mark Montague
running, under which version of which distribution of which OS? - Is there anything special about how you have either Apache HTTP Server or your operating system configured? -- Mark Montague m...@catseye.org

Re: [users@httpd] WAMP SSO

2012-09-10 Thread Mark Montague
the identity of the authenticated user into the REMOTE_USER environment variable, which can be accessed in your PHP script with the code $_SERVER['REMOTE_USER'] -- Mark Montague m...@catseye.org - To unsubscribe, e-mail

Re: [users@httpd] What verification does Apache do as part of SSLVerifyClient?

2012-09-05 Thread Mark Montague
subject=/C=US/ST=Michigan/O=catseye dot org/CN=Mark Montague/emailAddress=m...@catseye.org/UID=markmont ...and when I authenticate to my web server using this certificate, I have httpd configured to populate the REMOTE_USER environment variable using the UID attribute of the validated certificate

Re: [users@httpd] REDIRECT_STATUS

2012-08-30 Thread Mark Montague
message you are getting. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Re: WELCOME to users@httpd.apache.org

2012-08-27 Thread Mark Montague
obsolete and unsupported for many years. You should upgrade to 2.4.3 or 2.2.22. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h

Re: [users@httpd] Apache 2.4.2/PHP-FPM via ProxyPass/htaccess-Problem

2012-08-23 Thread Mark Montague
block instead. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Apache can't interpret a link in my webpage so the style is not good, how I can resolve that ?

2012-08-16 Thread Mark Montague
as which you are running httpd have permission to read the HTML file in the filesystem? - What version of Apache HTTP Server are you running? - What operating system (including version) are you running? - How did you install httpd? - How did you configure httpd? -- Mark Montague m

Re: [users@httpd] Can somebody help me to understand the strange GET requests logged in access.log and error.log ?

2012-08-13 Thread Mark Montague
virtual host. But since the default virtual host will not be serving any content -- it's only purpose is to catch and deny proxy abuse -- this doesn't matter. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail

Re: [users@httpd] Can somebody help me to understand the strange GET requests logged in access.log and error.log ?

2012-08-11 Thread Mark Montague
/ProxyAbuse If you look at the page above and determine that what you are seeing in your logs is not what the page above is talking about, please send the mailing list just a couple representative log lines so we can see what you're describing. -- Mark Montague m...@catseye.org

Re: [users@httpd] How to serve https only? Is this correct?

2012-07-12 Thread Mark Montague
the configuration that you had in your original message to redirect all HTTP request to HTTPS. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail

Re: [users@httpd] Re: How to enable file-uploads to HTTPD server, via WebDAV?

2012-07-12 Thread Mark Montague
OS distribution can help you set up and configure things properly. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] How to serve https only? Is this correct?

2012-07-12 Thread Mark Montague
for users who don't know to type https://; in their browser location bars as a part of all URLs for your site. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional

Re: [users@httpd] How to serve https only? Is this correct?

2012-07-12 Thread Mark Montague
to sites (in addtion to using web searches, links, and bookmarks). Based on this observation, I'd weigh security with user friendliness and choose set up HTTP-to-HTTPS redirects for either just / or for all URL paths for all but the most security-critical sites. -- Mark Montague m

Re: [users@httpd] Apache configuration error ( during make)

2012-06-25 Thread Mark Montague
hope this helps. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Apache configuration error ( during make)

2012-06-25 Thread Mark Montague
sure that OpenSSL and Apache HTTP Server are both compiled using the same compiler. -- Mark Montague m...@catseye.org

Re: [users@httpd] Apache 2.2.22 32 bit version

2012-06-18 Thread Mark Montague
httpd is no problem. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Build problem

2012-05-30 Thread Mark Montague
., Fedora 17), including version and platform-specific details (e.g., x86_64). Good luck. I hope this helps! -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional

Re: [users@httpd] Build problem

2012-05-30 Thread Mark Montague
working, which you can reload as many times as needed. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] simple easy way to turn to maintenance mode

2012-05-28 Thread Mark Montague
the new configuration files, and when you end maintenance stop httpd and start it using your regular configuration files. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org

Re: [users@httpd] Simple problem of index.php

2012-05-28 Thread Mark Montague
if you want it to apply to only a single directory): DirectoryIndex index.php I hope this helps. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e

Re: [users@httpd] How to have multiple SSL ports

2012-05-28 Thread Mark Montague
, but hopefully using _default_ in both VirtualHost stanzas will work for you; see the documentation for the VirtualHost directive to understand the difference). I hope this helps. -- Mark Montague m...@catseye.org

Re: [users@httpd] apache http running in multithreaded mode

2012-05-28 Thread Mark Montague
to have only one process that handles everything via threads. In the special case where you are trying to debug httpd, you can start it with the -X option to limit it to a single worker in a single process. -- Mark Montague m...@catseye.org

Re: [users@httpd] LD_LIBRARY_PATH issue in 2.2.22 and earlier

2012-05-24 Thread Mark Montague
/envvars and/or apachectl to fix LD_LIBRARY_PATH, if it is in fact being handled insecurely on your system (it appeared to be fine on the two older systems where I checked for this vulnerability). -- Mark Montague m...@catseye.org

Re: [users@httpd] Help: accessing network files from apache server

2012-05-06 Thread Mark Montague
as which httpd runs, or set the ACLs appropriately (if you are using ACLs), and/or set the permission bits properly (if you're running httpd under a Unix-like OS). -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users

Re: [users@httpd] Disable Hot-linking Files

2012-04-23 Thread Mark Montague
|jpg|jpeg|bmp|txt|pdf)$ http://www.example.com/somepage.html [F,NC] -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] mod_include

2012-04-23 Thread Mark Montague
happens when you try? -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] Caching webservice calls using apache

2012-04-10 Thread Mark Montague
, as it can be tricky -- or inappropriate -- to correctly set up caching for dynamically generated content. Instead of caching web service calls, you may want to analyze how Tomcat is spending its time and see if the code of your web application can be made more efficient. -- Mark Montague m

Re: [users@httpd] installing apache 2.4 on macosx Lion

2012-03-28 Thread Mark Montague
, and you've installed this version of mod_php in /opt/mystuff/apache-httpd/libexec/libphp5.so, then you can load it using the following directive: LoadModule php5_module /opt/mystuff/apache-httpd/libexec/libphp5.so I hope this helps. -- Mark Montague m...@catseye.org

Re: [users@httpd] [RHEL6.2] SSL handshake failure

2012-03-15 Thread Mark Montague
files that the Red Hat provided build of httpd uses. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] [RHEL6.2] SSL handshake failure

2012-03-15 Thread Mark Montague
is. Hopefully other people on this list will have additional, and better, suggestions of things to check. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e

Re: [users@httpd] enable HTTPD to support multi-layer certificates (ca chain)

2012-03-08 Thread Mark Montague
certificates. On the other hand, https://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslcertificatechainfile says that SSLCertificateChainFile specifies the all-in-one file containing certificates from the server certificate up through and including the root CA certificate. -- Mark Montague

Re: [users@httpd] confused about modsecurity and apparmor

2012-03-05 Thread Mark Montague
mod_security and AppArmor: both can be used together, and they complement each other to provide defense in depth. I hope this helps. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr

Re: [users@httpd] mod_proxy_fcgi + PHP-FPM on Apache 2.4 solution?

2012-03-05 Thread Mark Montague
breaks and how/why it breaks them. I do hope to go back and take another stab at this, but I can't say when it will be, so if anyone else wants to, please feel free. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail

Re: [users@httpd] mod_status, disable server-status for users

2012-03-05 Thread Mark Montague
.* -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] confused about modsecurity and apparmor

2012-03-05 Thread Mark Montague
you may have heard about are SELinux and Tomoyo. -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org

Re: [users@httpd] changing owner:group of uploaded data

2012-03-04 Thread Mark Montague
will be owned by the user who is authenticated. Does this sound right? For more information, see https://wiki.apache.org/httpd/PrivilegeSeparation -- Mark Montague m...@catseye.org - To unsubscribe, e-mail: users-unsubscr

Re: [users@httpd] mod_proxy_fcgi + PHP-FPM on Apache 2.4 solution?

2012-03-02 Thread Mark Montague
(which is more detailed than debug) and see if that provides any additional information as to what is -- or is not -- happening. For example, when debugging PHP-FPM issues, I use: LogLevel info ssl:notice rewrite:trace8 proxy:trace8 proxy_fcgi:trace8 Good luck! I hope this helps. -- Mark

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Mark Montague
cgi-bin/cbws1084.dll is always requesting it from the same IP address, block that IP address at your network-level or host-level firewall. This will prevent the requests from getting to Apache HTTP Server and from getting logged. -- Mark Montague m...@catseye.org

Re: [users@httpd] Problems with cgi scripts and Apache's log.

2012-03-01 Thread Mark Montague
different approaches. Some programs to look into include Splunk, logwatch, swatch, AWstats, Analog, and Webalizer. Do a google search on log file analyzer or log file filter, or describe what you want to do on this mailing list and ask for advice. -- Mark Montague m...@catseye.org

Re: [users@httpd] Fork as 'REMOTE_USER' instead of 'User'

2012-02-28 Thread Mark Montague
into the topic in detail and discusses the difficulties and various potential solutions: https://wiki.apache.org/httpd/PrivilegeSeparation -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache

Re: [users@httpd] Help with ssl configuration in apache

2012-02-24 Thread Mark Montague
of trust, but I'm keeping things simple for the purposes of this discussion). I hope this helps. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http

Re: [users@httpd] best website security method

2012-02-23 Thread Mark Montague
source automated and heuristic web vulnerability scanner ? I don't know, hopefully someone else can answer this. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See

Re: [users@httpd] proxy_fcgi and PHP-FPM: error pages and config syntax

2012-02-22 Thread Mark Montague
? No, what I've been using is very similar: RewriteRule ^/?(.*\.php)$ fcgi://127.0.0.1:9003/www/wp3/wordpress/$1 [P,L] -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server

Re: [users@httpd] A working mod_proxy_fcgi + php-fpm httpd.conf file anyone?

2012-02-22 Thread Mark Montague
running an old version of PHP that I've patched to solve my specific problems, though. Try the examples I give above and if you still have errors, ask about the problem again -- I might be able to update to the newest versions and then give you some better advice. -- Mark Montague m

Re: [users@httpd] proxy_fcgi and PHP-FPM: error pages and config syntax

2012-02-22 Thread Mark Montague
said is intended for the 2.2 series, apologies for not making that clear in my original response to this and the other PHP-FPM thread. I sort of assumed that the two PHP-FPM threads were occasioned by people trying out 2.4.1, this was a bad assumption on my part. -- Mark Montague m

Re: [users@httpd] proxy_fcgi and PHP-FPM: error pages and config syntax

2012-02-22 Thread Mark Montague
balancing to provide scalability and fault tolerance across a pool of PHP-FPM servers all running the same web applications. So for this reason I have not tried using a Unix socket. -- Mark Montague m...@catseye.org

Re: [users@httpd] Cross-Site Request Forgery

2012-02-20 Thread Mark Montague
curious. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr

Re: [users@httpd] How to find if Revision 1179239 patch is in place

2012-02-13 Thread Mark Montague
yourself and you patched the source to fix CVE-2011-3368 thus creating the vulnerability described in CVE-2011-4317 but you did not apply the patch to fix CVE-2011-4317 for some reason, despite applying other fixes. -- Mark Montague m...@catseye.org

Re: [users@httpd] Apache forking a forked child process -- is that possible?

2012-01-27 Thread Mark Montague
in an external daemon (e.g., FastCGI). -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e

Re: [users@httpd] Apache forking a forked child process -- is that possible?

2012-01-26 Thread Mark Montague
us what problem you are trying to solve or why you are asking the question? Knowing this might help us help you better. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server

Re: [users@httpd] Running cgi binaries as root

2012-01-26 Thread Mark Montague
privileges to read the IO pins (and *only* those privileges) to the www-data user, if possible. -- Mark Montague m...@catseye.org

Re: [users@httpd] Running cgi binaries as root

2012-01-26 Thread Mark Montague
On January 26, 2012 13:51 , Doug McNutt dougl...@macnauchtan.com wrote: At 09:56 -0500 1/26/12, Mark Montague wrote, and I snipped a bunch: On January 26, 2012 2:50 , Tarzan Janemailto:lapierr...@hotmail.comlapierr...@hotmail.com wrote: Concerning the security I believe when using binary

Re: [users@httpd] Question regarding OS support for Apache version 2.2.21....

2012-01-26 Thread Mark Montague
for it? then the answer is no. In fact, Fedora 8 itself is no longer supported by the Fedora Project: Fedora 8 reached its end of life on January 7th, 2009. If you want to run a version of Fedora that is supported by the Fedora Project then you should use Fedora 16. -- Mark Montague m...@catseye.org

Re: [users@httpd] Running cgi binaries as root

2012-01-24 Thread Mark Montague
binaries to be root and turn on the set-uid bit. This way, when the CGI binaries are run they will be run as root. https://en.wikipedia.org/wiki/SetuidSince you've already said that you're aware of the security issues, I won't repeat any dire warnings here. -- Mark Montague m

Re: [users@httpd] syncing across web cluster

2012-01-23 Thread Mark Montague
them from the database instead of from the filesystem. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more

Re: [users@httpd] apache bench -k switch

2011-12-23 Thread Mark Montague
, the time between requests, request pipelining, and how long a connection is held open by the client after the last request on it. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP

Re: [users@httpd] Cross-site scripting over ssl

2011-12-15 Thread Mark Montague
cross-site scripting, see https://www.owasp.org/index.php/XSS_%28Cross_Site_Scripting%29_Prevention_Cheat_Sheet I hope this helps. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache

Re: [users@httpd] HOW TO HAVE COOKIE FREE DOMAINS

2011-12-11 Thread Mark Montague
configurations or just by hosting all my static contents in a new domain it can be achieved... To be cookie-free, do not use any code on your web site that sets cookies. This is the default, especially when you are serving static content. -- Mark Montague m...@catseye.org

Re: [users@httpd] worker, prefork, .apache2.conf.swp and php

2011-12-09 Thread Mark Montague
thread safety issues. The worker MPM for Apache HTTP Server is threaded. This can create problems and instability. See http://www.php.net/manual/en/faq.installation.php#faq.installation.apache2 If you want to use PHP, either use the prefork MPM or FastCGI. -- Mark Montague m...@catseye.org

Re: [users@httpd] Re: IfModule *rewrite*

2011-12-08 Thread Mark Montague
the log file in your web server error log file? -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info

Re: [users@httpd] IfModule *rewrite*

2011-12-07 Thread Mark Montague
need to have a |RewriteEngine on| directive for each virtual host in which you wish to use rewrite rules. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See

Re: [users@httpd] mod_rewrite help?

2011-11-30 Thread Mark Montague
or other context within the virtual host context. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info

Re: [users@httpd] Virtual hosts

2011-11-30 Thread Mark Montague
need to switch to a httpd binary that provides the worker MPM and then change the worker MPM directives in your configuration files back to the prefork MPM configuration directives that you had before upgrading. -- Mark Montague m...@catseye.org

Re: [users@httpd] Apache 2.2.20 and mod_proxy_balancer with ajp

2011-11-22 Thread Mark Montague
: https://issues.apache.org/bugzilla/show_bug.cgi?id=50945 -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more

Re: [users@httpd] Disabled directory listing, but I got 404 instead of 403

2011-11-16 Thread Mark Montague
. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: users-unsubscr

Re: [users@httpd] Disabled directory listing, but I got 404 instead of 403

2011-11-16 Thread Mark Montague
this, I don't know if it will work) RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{REQUEST_FILENAME/index.php !-f RewriteRule ^. - [F] -- Mark Montague m...@catseye.org - The official User-To-User support forum

Re: [users@httpd] Apache restarting

2011-11-15 Thread Mark Montague
linking. (I'm using version 1.7.0 beta with the jumbo patch). http://cronolog.org/ -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http

Re: [users@httpd] Consequences of https to https rewrites?

2011-11-10 Thread Mark Montague
seems to generate a big spike in CPU usage? When what goes live? -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html

Re: [users@httpd] Consequences of https to https rewrites?

2011-11-10 Thread Mark Montague
mod_rewrite as a cause of the problem you're seeing. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info

Re: [users@httpd] Apache 2.2.3 Session tracking with mod_session produces load error on module load

2011-10-24 Thread Mark Montague
since 2.3.5-beta and have been happy with it; 2.3.14-beta is the current release. -- Mark Montague m...@catseye.org - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org

Re: [users@httpd] Apache 2.2.3 Session tracking with mod_session produces load error on module load

2011-10-24 Thread Mark Montague
handoffs to the content management system (Drupal). Have you considered mod_usertrack ? https://httpd.apache.org/docs/2.2/mod/mod_usertrack.html -- Mark Montague m...@catseye.org - The official User-To-User support forum

  1   2   >