Tagged Questions
The apache-config tag has no wiki summary.
52
votes
3answers
11k views
ETag vs Header Expires
I've looked around but haven't been able to figure out if I should use both an ETag and an Expires Header or one or the other.
What I'm trying to do is make sure that my flash files (and other images ...
7
votes
3answers
4k views
How do I run Django and PHP together on one Apache server?
I can currently run either Django through mod_wsgi or PHP on my Apache server.
My Django projects run at: http://localhost and source is at C:/django_proj
My PHP projects run at: ...
7
votes
4answers
7k views
How can I prevent tons of apache processes spawning when I start apache and proceeding to kill my machine?
I have a highly trafficked application on one debian machine and apache has started acting strange.
Every time I start apache, tons of apache processes are spawned, the app doesn't load at all, and ...
5
votes
5answers
1k views
Need to allow encoded slashes on Apache
I'm currently trying to place a URL within a URL
(e.g. http://test.com/url/http%3A%2F%2Fwww.url2.com)
I'm aware that I have to encode the URL, which I have done, but now I am getting a 404 error back ...
5
votes
4answers
3k views
index.php not loading by default
I have just installed centos, apache and php when I visit my site http://domain.com/myapp/, it says "forbidden" by default its not loading the index.php file.
When I visit ...
5
votes
5answers
3k views
Any python libs for parsing apache config files?
Any python libs for parsing apache config files or if not python anyone aware of such thing in other languages (perl, php, java, c#)?
As i'll be able to rewrite them in python.
4
votes
3answers
66 views
Is it possible to have a php file in apache operate without an extension?
I have a file
http://www.www.com/somefile.php
I would like to be able to get to the same file by going to
http://www.www.com/somefile
But I still need
http://www.www.com/directory
to open ...
4
votes
3answers
8k views
Best way to log POST data in Apache?
Imagine you have a site API that accepts data in the form of GET requests with parameters, or as POST requests (say, with standard url-encoded, &-separated POST data). If you want to log and ...
3
votes
2answers
494 views
sites-available (apache) and httpd.conf for WAMP - making XXXXX.domain.com automatically direct
I currently have this in my httpd.conf file in WAMP:
NameVirtualHost 127.0.0.1
<VirtualHost 127.0.0.1>
ServerAlias *.dev.co.uk
UseCanonicalName Off
VirtualDocumentRoot ...
3
votes
2answers
385 views
Apache + Perl + NTLM/LDAP == Single signon?
We have a Perl app which runs under Apache on Solaris using CGI::Application. That's all running fine. We'd like to get access to the USER_ID variable passed by the IE browser, and do some Database ...
3
votes
5answers
678 views
Get a 404 Error when clone, pull mercurial repository
I have a repository in here http://repos.joomlaguruteam.com/
I using hgweb.cgi
this is my hgweb.config file
[web]
baseurl =
#allowpull = true
allow_push = *
push_ssl = false
allow_archive = bz2 gz ...
3
votes
1answer
76 views
What is the equivalent value for apache configuration
I need to convert following nginx rule to Apache configuration.
can anyone help me.
location /chat {
rewrite /chat(/.+)$ $1 break;
proxy_pass http://localhost:8000;
...
3
votes
3answers
416 views
apache mod_rewrite rule in httpd.conf for modifying some paths, but not others
I'm having quite a challenge creating an appropriate rewrite rule for Apache/2.2.14 on Fedora 10. I'm working through the CodeIgniter-Doctrine tutorial which uses an .htaccess file. (Search for ...
3
votes
2answers
287 views
Regex - how to match everything except a particular pattern
I'm using Apache and I want to redirect all received request to the ssl virtual host.
So I have the following line in the regular http virtual host:
RedirectMatch (.*) https://www.mydomain.com$1
...
3
votes
1answer
187 views
mod_rewrite with subdomain and url pattern
I want to use the subdomain as a get variable with mod_rewrite AND use some parameter :
eg /page/language/site/counter -> index.php?o=operator&lg=language&s=arg1&c=arg2
How to do that ...
3
votes
1answer
5k views
Apache & JBoss use port 80 at the same time
I have both Apache 2 and JBoss 4.2.3 on the same machine and would like both of them to use port 80. There are several ways I see people doing this mod_jk, mod_proxy, but I'm not sure which one is the ...
3
votes
4answers
9k views
how to change the default encoding to UTF-8 for server
i am using a hosting company and it will list the files in a directory if an index.html is not there. However, it will use iso-8859-1 as the default encoding. if the server is apache, is there a way ...
2
votes
0answers
192 views
How do you set the Access-Control-Allow-Origin header for the HTTP basic authentication response in Apache?
I want to use XHR to log in to a site that uses HTTP basic authentication. The following piece does this.
http = new XMLHttpRequest();
http.open("get", "http://...", false, username, password);
...
2
votes
2answers
500 views
Django (wsgi) and Wordpress coexisting in Apache virtualhost
I have a Django project that I need mounted at two different subdirectories of my url, and I need Wordpress running at /. So:
*.example.com - WordPress
*.example.com/studio - django
...
2
votes
3answers
1k views
What is the mac equivalent of “/etc/apache2/sites-available”?
I am installing Koha from source. Generic unix directions indicate the following step after sudo make install
sudo ln -s /etc/koha/koha-httpd.conf /etc/apache2/sites-available/koha
huh?
My apache2 ...
2
votes
2answers
877 views
Configure Apache to use different Unix User Accounts (www-data) per Site
An Apache 2.x Webserver with default configurations from the ubuntu/debian repositories will use the www-data unix account for apache2 processes handling web requests. Assuming that apache is serving ...
1
vote
1answer
65 views
Bugzilla Apache server config
I have installed Bugzilla on my dedicated server with Centos5.5.
I have already a website running on this server with Apache config
<VirtualHost *:80>
DocumentRoot /var/www/html/XXX
..
...
1
vote
2answers
124 views
How can I redirect all sub-directories to root using htaccess or httpd.conf?
I have an index file that builds content based on n PATH_INFO variables.
Example:
site.com/A/B/n/
should use index.php at either:
site.com/index.php?var1=A&var2=B&varN=n
- or -
...
1
vote
2answers
81 views
Appache virtual host on a spesific directory
I need my site to have a virtual host on a specific directory for my zend application. When user enters www.example.com it should go to normal document root but when user navigates to ...
1
vote
1answer
175 views
Apache mod-rewrite in httpd.conf not working
I need to make a change to my Apache web server to redirect requests for the home page from iPhone browsers to a different page. I've edited the /etc/httpd/conf/httpd.conf file and added the ...
1
vote
1answer
47 views
Can I configure Apache to redirect at a specified timeout?
I How to configure Apache so I can redirect to another page on a specified TimeOut. Is this possible?
1
vote
1answer
150 views
Phusion Passenger - route exists but is not matched (gives 404 instead)
I'm running a rails 3 app at the root level in a phusion passenger environment (CentOS, apache) and having difficulty getting passenger to find some routes, although rake routes shows the routes ...
1
vote
2answers
484 views
Server configuration for high traffic website
I'm managing a hosting server and one of my customers will launch a high traffic PHP website. It's a penny auction website and we expect between 25k and 30k visitors per day.
Can you tell me please ...
1
vote
1answer
187 views
Conditional declaration in Apache httpd
We want to be able to set Cache-Control headers based on User-Agent in Apache
For example, if a User-Agent contains substring foo we want to set Cache-Control to 10 minutes. But if not set it to 1 ...
1
vote
2answers
97 views
Protect the Folder using Apache and Access that File using PHP
HI, I want to protect only my documents folder in the Web server and I did by placing .htaccess file in that directory but how to access that file in my PHP code.
1
vote
1answer
243 views
how to configure apache to view hidden (`.`) files?
How do I make a directory listing in apache show the ./hidden files? I tried both
<Directory /var/www/*>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
...
1
vote
1answer
197 views
Allow anonymous access to parts of a secured Subversion repository
We face currently the problem to allow people access to parts of a subversion repository (1.5.x, soon 1.6.x), that is secure in other parts. Let me give you some details:
We have a production server ...
1
vote
1answer
144 views
Apache : Recover “sites-enabled” config files
I was cleaning up on one of my older servers when I realized that there was a lot of stuff in the "sites-available" config folder that wasn't being used, and since everything I needed and rarely ...
1
vote
1answer
527 views
magento https/http redirection
Is there a way to redirect domains based on its parameters in magento.
Eg:
if user trying to load https://stage.domain.com/ the system should redirect it to
http://stage.domain.com/,
if user ...
1
vote
1answer
504 views
AllowEncodedSlashes Issue
I am currently having issues with encoded slashes on my Apache server. The url structure is as follows:
www.site.com/url/http%3A%2F%2Fwww.anotherurl.com/format/xml
I am then getting a 404 error ...
1
vote
1answer
394 views
Apache Server Problem? can't access apache server in Guest OS from Host OS when using vmware
Here is the situation:
-Using VMWare Workstation, set the network adapter to bridge.
-Host os is winxp, guest os is CentOS 5
-Apache server installed in guest (centos) os
-Say my host ...
1
vote
3answers
320 views
mod_rewrite returns 302 found
I have an apache 2.2 and I am using mod_rewrite. My objective is to forward traffic from
http://localhost:80/AA to http://localhost:8090/BB. So I have a simple rule
RewriteRule http://localhost:80/AA ...
1
vote
2answers
449 views
Configure apache to listen on port other than 80
I want to configure apache to listen on port 8079
I added LISTEN 8079 directive in httpd.conf
I opened 8079 port in iptables / restarted iptables etc. I even stopped iptables service.
"netstat -nal | ...
1
vote
1answer
93 views
Apache Security Default Install Permissions
ive recently installed apache2 on my Ubuntu machine and have a few questions about security and user permissions. I know how to listen on other ports, hide indexes with -Indexes and how to ...
1
vote
1answer
38 views
How to manage apache configurations to make them more portable between servers?
The common issue: you move an application from one server to another, usually this means other directories to configure in your application configuration files and in apache conf files.
How can you ...
1
vote
2answers
846 views
Django with mod_wsgi returns 403 error
I am trying to use Django with Apache (and mod_wsgi). With the default Django webserver everything was going well, but now I get 403 (access forbidden) error when trying to load the page. I searched ...
1
vote
1answer
258 views
How to “reload” just one vhost file
experts!
I have a question about apache configuration. Please help me!
My server run multi virtual hosts (multi domains). But, every time I edit a vhost file, I have to restart apache, and, server ...
1
vote
1answer
177 views
How to setup multiple subdomains on lampp?
I need to set up multiple projects on lampp. How can i create sub domains for these multiple projects.
My projects are in cakePHP.
Can anyone help me?
1
vote
1answer
740 views
How do I configure Apache2 to allow multiple simultaneous connections from same IP address?
By default, Apache2 seems to allow only 1 connection per IP address.
How do I configure Apache2 to allow multiple simultaneous connections from the same IP address?
Here is my situation:
a web app ...
1
vote
1answer
539 views
Apache ErrorDocument with absolute path
I have a server with several virtual hosts. Now I want to set up the error documents for the whole server. I have located my error sites in /var/www/error/*, but with the ErrorDocument Directive I am ...
1
vote
0answers
112 views
Auto initialization for a django app on apache/fcgi
We are implementing a web service that is hosted in Dreamhost VS, uses Apache with FCGID running a Django application.
Our key issue is that the initialization of our application is extreamly long ...
1
vote
1answer
205 views
Make Apache to show different index.html also in browser's address bar
I have the following foloder tree on my shared hosting server:
www.somesite.com
|
|_ public_html (document folder)
|_ .htaccess (Apache file)
|_ index.html (page shown by server now when ...
1
vote
0answers
444 views
Selectively configuring Apache 2 mod_headers for Google Chrome Frame
I am currently evaluating Google Chrome Frame and so far i'm happy with it, but what i'd like to do is selectively use it for certain sections of my website.
Some sections require ActiveX so need to ...
1
vote
1answer
63 views
How can I make a virtual host accept multiple domains?
I have two different domains I want to use for this website, how can I configure the virtual host to make this work?
Is it possible to assign it more than one server name?
Help!
1
vote
3answers
2k views
PHPIniDir broken under windows 7?
I had a server running on a Windows XP machine using Apache2 with PHP and MySQL. I've recently upgraded to Windows 7 and have been having trouble getting it to work. Apache works fine and PHP works, ...