Tagged Questions
0
votes
1answer
76 views
Apache server not able to read cookies from Browser
I have developed a login authentication page using cookies (with spring security) where for the first time, the user will need to get itself authenticated. Once the user gets successfully ...
1
vote
1answer
57 views
Apache - Reverse proxy
I am using Apache 2 and using the below virtual host definition in httpd.conf file
<VirtualHost *>
ServerName localhost
ProxyPass / http://localhost:8080/stackoverflow/
...
1
vote
1answer
122 views
Enabling SSL on Apache2 causes address already in use error
My server works just fine on a normal Apache2 install. Now, I'm trying to install subversion on this server using a guide I found on the net called: Installation of Subversion on Ubuntu, with Apache, ...
0
votes
1answer
423 views
How to use different php.ini files for different VirtualHosts?
I have my site and it's staging subdomain running on the same CentOS machine running apache. The subdomain is created using a VirtualHost, and I use it to find any bugs before I push to production. I ...
2
votes
1answer
573 views
How to properly deny Railo directory access through Apache
I've been battle tested on this and failed to achieve my goal which is to deny all access to all directories except the Public directory and only allow access to all all other directories with ...
1
vote
1answer
66 views
Apache2 “pseudo” doc root
I have several folders in my /www folder that contain various applications. To keep things organized, I keep them in their own folders -- this includes my base application.
Examples:
phpmyadmin = ...
1
vote
1answer
53 views
Forcing adverts via apache configuration file
I have a server I am trying to force adverts for free users. I can do it with a .htaccess file with this line "php_value auto_append_file '/var/www/vhosts/demoblog/demoblog.tk/httpdocs/test_ad.php'" ...
1
vote
1answer
566 views
Purposes and priorities of Apache conf files
I've installed an Apache2 server on a Linux Box (Ubuntu 10.04 TLS) and am trying to setup some virtual host and proxies. There is some stuff in the apache2.conf, an empty httpd.conf (which was used ...
1
vote
2answers
913 views
Apache FilesMatch regexp: Can it match by the cache buster 10 digit (rails generated) following the filename?
According to the apache FilesMatch docs:
The FilesMatch directive provides
for access control by filename
Basically, I only want to set an expires header for resources that have a 10 digit ...
