The Apache HTTP Server, commonly referred to as Apache, is an open-source HTTP server for modern operating systems including UNIX, its variants and Windows. Apache is a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.

learn more… | top users | synonyms (1)

17
votes
9answers
53k views

Apache 13 permission denied in user's home directory [closed]

My friend's website was working fine until he moved the document root from /var/www/xxx to /home/user/xxx. Apache gives 13 permission denied error messages when we try to access the site via a web ...
17
votes
10answers
35k views

How to ignore SSL certificate errors in Apache HttpClient 4.0

How do I bypass invalid SSL certificate errors with Apache HttpClient 4.0?
17
votes
7answers
4k views

Running Django with FastCGI or with mod_python

which would you recommend? which is faster, reliable? apache mod_python or nginx/lighttpd FastCGI?
17
votes
4answers
29k views

Setting up an Apache Proxy with Authentication

I need to set up a proxy with authentication to verify the behavior of an application that connects to the internet. I am trying to set-up an Apache installation with forward proxy and ...
17
votes
1answer
20k views

Virtualhost For Wildcard Subdomain and Static Subdomain

I have an odd situation where I want to have the urls app1.example.com, example.com and *.example.com all using a different virtual host. This is what I have (excluding example.com cause it just ...
17
votes
7answers
13k views

PHP errors NOT being displayed in the browser [Ubuntu 10.10]

I'm new to PHP and the whole LAMP stack but I've managed to get it up and running on my Ubuntu 10.10 system. Everything seems to be working with the exception of error reposting in the browser which I ...
17
votes
3answers
13k views

Apache rewrite based on subdomain [closed]

Im trying to redirect requests for a wildcard domain to a sub-directory. ie. something.blah.domain.com --> blah.domain.com/something I dont know how to get the subdomain name to use in the rewrite ...
17
votes
4answers
17k views

Online Based Apache Web Log Analyzer By Submitting Just the Raw Logfile

I have a raw "access.log" file from Apache. Is there any web based version tool where I can just submit this raw log file and return me the analysis results I am aware of the code such as AWSTATS, ...
17
votes
1answer
125 views

.htaccess page and lang error

i try to look on stackoverflow but i can't find my answer. so i need to find out which domain which sub-domain the user is and which page is loading. eg: en.domain.com/contactus this should ...
17
votes
4answers
19k 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 ...
17
votes
1answer
11k views

Apache won't follow symlinks (403 Forbidden)

I'm having some trouble setting up Apache on Ubuntu. I've been following this guide. # /usr/sbin/apache2 -v Server version: Apache/2.2.17 (Ubuntu) Server built: Feb 22 2011 18:33:02 My public ...
17
votes
3answers
6k views

node.js running alongside Apache PHP?

I am trying to get my head round node.js... I am very happy with my LAMP set up as it currently fulfils my requirements. Although I want to add some real-time features into my PHP app. Such as ...
16
votes
7answers
12k views

Apache HttpClient on Android producing CertPathValidatorException (IssuerName != SubjectName)

I'm developing an Android application for accessing some battle.net (https://eu.battle.net) account data (for World of Warcraft) and I'm using the org.apache.http.client.HttpClient to do so. This is ...
16
votes
6answers
43k views

Apache and IIS side by side (both listening to port 80) on windows2003

What are some good ways to do this? Is it even possible to do cleanly? Ideally I'd like to use packet headers to decide which server should handle requests. However, if there is an easier/better way ...
16
votes
5answers
9k views

Why use Apache Web Server in front of Glassfish or Tomcat?

Is it good idea to use Apache Webserver in front of GF or Tomcat? Does it improve the performance/security? Or there is not any reason to use Apache Web Server with GF?
16
votes
4answers
4k views

How does Linux determine the next PID?

How does Linux determine the next PID it will use for a process? The purpose of this question is to better understand the Linux kernel. Don't be afraid to post kernel source code. If PIDs are ...
16
votes
5answers
9k views

Django Apache/mod_python Admin CSS not appearing with admin tables

I have Windows XP/Django/apache/mod_python working on localhost. All parts are working with the exception of the admin CSS not rendering. The admin works, but no html formatting. I've made ...
16
votes
6answers
37k views

PHP $_SERVER['HTTP_HOST'] vs. $_SERVER['SERVER_NAME'], am I understanding the man pages correctly?

I did a lot of searching and also read the PHP $_SERVER man page. Do I have this right regarding which to use for my PHP scripts for simple link definitions used throughout my site? ...
16
votes
14answers
14k views

Tunnel over HTTPS

At my workplace, the traffic blocker/firewall has been getting progressively worse. I can't connect to my home machine on port 22, and lack of ssh access makes me sad. I was previously able to use ...
16
votes
4answers
17k 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 ...
16
votes
6answers
19k views

How to config Tomcat to serve images from an external folder outside webapps?

How can i use Tomcat to serve image files from a public folder outside webapps? I dont want to use a 2nd Apache fileserver on a different port since the image files are part of the same app. And i ...
16
votes
3answers
11k views

How does Node.js perform compared to Apache?

Is Node.js quicker and more scalable than Apache? Are there any performance figures to back up Node.js's performance for a web application over Apache? UPDATE: Ok maybe my question (above) is ...
16
votes
2answers
3k views

Definition of Connect, Processing, Waiting in apache bench

When I run apache bench I get results like: Command: abs.exe -v 3 -n 10 -c 1 https://mysite Connection Times (ms) min mean[+/-sd] median max Connect: 203 213 8.1 219 ...
16
votes
1answer
5k views

Where can I find good reference/tutorial on writing Apache modules (in C)?

I've looked all over and can't really find much of anything. I need three basic things: Good API reference Some sort of a tutorial Good architectural overview I have the module source code and am ...
16
votes
3answers
5k views

Google Chrome audit on caching

If I run an audit on my sites with Google Chrome, I get this message in the Leverage browser caching section: The following resources are missing a cache expiration. Resources that do not ...
16
votes
2answers
6k views

Correct Apache AddType directives for font MIME types

I’m using @font-face for embedded fonts (thanks Paul Irish). In trying to fix Chrome’s warning about wrong MIME type for woff fonts, I’ve discovered a mass of conflicting suggestions. Everyone seems ...
15
votes
3answers
11k views

How to install apache bench on windows 7?

I want to install apache bench on windows, can someone tell me which MSI to get? I did install some MSI but it seems to have installed apache http server. I just need to run apache bench, as I am ...
15
votes
2answers
5k views

Is 'epoll' the essential reason that Tornadoweb(or Nginx) is so fast?

Tornadoweb and Nginx are popular web servers for the moment and many benchmarkings show that they have a better performance than Apache under certain circumstances. So my question is: Is 'epoll' the ...
15
votes
5answers
20k views

.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration

I have this error when trying to browse php files locally [Fri Apr 13 19:16:40 2012] [alert] [client 127.0.0.1] C:/AppServ/www/hr-website/.htaccess: Invalid command 'RewriteEngine', perhaps ...
15
votes
8answers
2k views

What are the best books and resources for learning to develop, deploy and/or host Django? [closed]

I'm a newbie on the Django scene coming from an ASP.NET C# background. I'm looking for some good resources to help me learn the ins and outs of Django/Python. Any recommendations?
15
votes
5answers
7k views

Vagrant's port forwarding not working [closed]

I'm running into a small problem at the end of the Getting Started guide for vagrant. I'm working on a CentOS basebox that has Apache2 running (provisioning via Puppet). I've set up port forwarding ...
15
votes
4answers
20k views

How do I redirect from Apache to Tomcat?

I'm working on my first Java site. I'm running Apache Tomcat on port 8080, and Apache HTTPD on port 80. The current URL that I can access the site at is (for example) 123.4.5.6:8080. I want to remove ...
15
votes
4answers
16k views

Allow php sessions to carry over to subdomains

I use php sessions (not cookies, except for session id cookie) for all user data, and when a user goes to their profile user.mydomain.com they are immediately "logged out" untill then remove the ...
15
votes
4answers
2k views

Who Add “_” Single Underscore Query Parameter?

I have a PHP server running on Apache, I get lots of request looks like this, 10.1.1.211 - - [02/Sep/2010:16:14:31 -0400] "GET /request?_=1283458471913&action=get_list HTTP/1.1" 200 547 0 ...
15
votes
4answers
13k views

How would you compare Apache Tomcat & Glassfish as production servers?

I have a J2EE-based system which is running currently on Apache Tomcat. We are in discussions to move our production servers to the Glassfish server. Can someone share their experiences with either ...
15
votes
1answer
243 views

Block images, CSS or JS if the user did not visit my site

I suddenly get a lot of requests to my site (wget, curl etc...). I do not want any of these request to be executed unless a user has visited my site at least once using a valid browser (like Firefox ...
15
votes
6answers
13k views

Multiple domains for one site: alias or redirect?

I'm setting up a number sites right now and many of them have multiple domains. The question is: do I alias the domain (with ServerAlias) or do I Redirect the request? Obviously ServerAlias is ...
15
votes
1answer
5k views

REMOTE_ADDR and IPv6 in PHP

Is it safe to assume that $_SERVER['REMOTE_ADDR'] always returns a IPv4 address? Thanks!
15
votes
1answer
12k views

How can I implement rate limiting with Apache? (requests per second)

What techniques and/or modules are available to implement robust rate limiting (requests|bytes/ip/unit time) in apache?
15
votes
7answers
717 views

Best practices for withstanding launch day traffic burst

We are working on a website for a client that (for once) is expected to get a fair amount of traffic on day one. There are press releases, people are blogging about it, etc. I am a little concerned ...
15
votes
2answers
416 views

rewrite urls for product name

i want to rewrite a rule for my products. i want to use the id and name in the url separated by a dash like this: 123-name means product id = 123 and name = name so in my php i can get the ...
15
votes
5answers
29k views

Apache Name Virtual Host with SSL

I am attempting to setup our servers to allow traffic over SSL. I am aware that SSL does not work with Name Virtual Host, but we have all of our apache servers on virtual machines with dedicated ...
15
votes
4answers
4k views

How do you Require Login for Media Files in Django

I'm serving "sensitive" information in downloadable PDF's and Spreadsheets within a user registration section of a site. Is there a way to allow the django authentication to secure this media without ...
15
votes
1answer
448 views

ASP (Classic) on Linux Chilisoft Replacement

Sun's One Server worked great up until Sun Disappeared. Now looking around the landscape the classic ASP solutions are all abadoned. Apache::ASP appears to be perl wrapped in ASP tags. Chilisoft ...
15
votes
2answers
678 views

OpenSSL not working on Windows

Problem: OpenSSL is not working in my Windows environment. Environment: Windows NT x 6.1 build 7601 (Windows 7 Business Edition Service Pack 1) i586 Apache/2.4.4 (Win32) PHP/5.4.13 x86 PHP ...
15
votes
1answer
393 views

Mono vhost configuration errors: Address already in use

I've got three different error messages in my apache error log every time I'm starting apache. I've read the mod_mono configuration section multiple times so please give me a hint how to get rid of ...
14
votes
7answers
5k views

If you use https will your url params will be safe from sniffing? [duplicate]

Suppose I setup a simple php web server with a page that can be accessed by https. The url has simple parameters like https://www.example.com/test?abc=123. Is it true that the parameter here in this ...
14
votes
4answers
8k views

Why would $_FILES be empty when uploading files to PHP?

I have WampServer 2 installed on my Windows 7 computer. I'm using Apache 2.2.11 and PHP 5.2.11. When I attempt to upload any file from a form, it seems to upload, but in PHP, the $_FILES array is ...
14
votes
11answers
10k views

A good multithreaded python webserver?

I am looking for a python webserver which is multithreaded instead of being multi-process (as in case of mod_python for apache). I want it to be multithreaded because I want to have an in memory ...
14
votes
7answers
20k views

How to check if memcache or memcached is installed for PHP?

How do I test if memcache or memcached (for PHP) is installed on my Apache webserver? Memcache is a caching daemon designed especially for dynamic web applications to decrease database load by ...

1 2 3 4 5 519