Apache (HTTP Server) /əˈpætʃiː/ is a modular cross-platform web server software with a large variety of features(called modules) including SSL, compression, log, proxy and server-side programming language interfaces like Perl, Python, Tcl, and PHP.

learn more… | top users | synonyms

35
votes
5answers
13k views

Creating a symbolic link in Sites directory

I have a file in my ~/Sites directory that works fine when I browse to it through coderama.local/~coderama/index2.php Now I want to get tricky and move my index2.php file to somewhere else on my ...
34
votes
5answers
15k views

Mercurial push, abort: authorization failed

I'm having problems with pushing to mercurial repository: $ hg push pushing to https://user:***@hg.domain.com/X_repo searching for changes abort: authorization failed The same URL (with the same ...
29
votes
11answers
117k views

Windows could not start the Apache2 on Local Computer - problem

During the installation of Apache2 I got the following message into cmd window: Installing the Apache2.2 service The Apache2.2 service is successfully installed. Testing httpd.conf.... ...
27
votes
4answers
40k views

Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using ::1 for ServerName

I have just installed Apache 2.2.17 and I am using it first time. Now when I try to start the server using command "service httpd start" It gives me the message "httpd: Could not reliably determine ...
26
votes
6answers
26k views

Correct owner/group/permissions for Apache 2 site files/folders under Mac OS X (10.6)?

It's hard to find Mac-specific answers to this question on the web, so I'm hoping someone out there can put this one to rest for me? My permissions are screwed up on my sites and I'm not sure how to ...
25
votes
4answers
24k views

Is there a practical HTTP Header length limit?

I have a web application that adds contextual information to XmlHttpRequest objects using the setRequestHeader API. I am using a custom header name (e.g. X-Foo) and a JSON structured value. It isn't ...
21
votes
6answers
5k views

Node.js slower than Apache

I am comparing performance of Node.js (0.5.1-pre) vs Apache (2.2.17) for a very simple scenario - serving a text file. Here's the code I use for node server: var http = require('http') , fs = ...
20
votes
1answer
17k views

multiple django sites with apache & mod_wsgi

I want to host several sites with under the same server which uses Debian 5, say I have site1, site2 and site3, and assume my ip is 155.55.55.1: site1: 155.55.55.1:80 , script at /opt/django/site1/ ...
19
votes
5answers
7k views

PHP APC Potential Cache Slam Averted for Key

I'm receiving this error while trying to use apc_store(). I googled it and saw that this was APC timebomb bug and saw some fixes which suggested adding apc.slam_defense = Off; to php.ini. I need to ...
18
votes
1answer
3k views

X-Pad: avoid browser bug header added by apache

I see this header appended to the response from apache. Does it have any significance in new age browsers; or it's merely there to circumvent a bug in older versions of Netscape. Seems weird. EDIT ...
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
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
6answers
2k views

Windows 7 php + Symfony2 terribly slow

This is an issue I've been having for a long time. I want to run PHP applications on my windows computer and it has a terribly high load time, around 10-25 seconds. I have tried many things: First I ...
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
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
2answers
2k views

Tornado is “a relatively simple, non-blocking web server framework written in Python”--can somewhat explain what that means?

This is probably a stupid question, but what exactly is a "non-blocking web server"? All web servers are technically non-blocking, arent they? otherwise how could they handle simultaneous connections? ...
16
votes
3answers
471 views

How does apache PHP memory usage really work? [closed]

To give some context: I had a discussion with a colleague recently about the use of Autoloaders in PHP. I was arguing in favour of them, him against. My point of view is that Autoloaders can help ...
15
votes
8answers
6k views

What Perl RESTful framework do you recommend? [closed]

Hi I'm looking for a Perl RESTful framework that have to : work under apache2/mod_perl2 be simple be elegant be light be flexible Am I just dreaming or can I avoid the 'Roll our own' approach? ...
15
votes
1answer
12k views

How do I list all repositories with the SVNParentPath directive on Apache+SVN?

I'm using SVN through Apache with dav_svn_module like this: <Location /svn> DAV svn SVNParentPath C:/svn_repository AuthName "Subversion Repository" ... </Location> This lets me ...
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
2answers
667 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 ...
14
votes
1answer
585 views

Allowing only single active session per user in Django app

I want to restrict logged-in users to only have one active session, i.e. if the user logs in with a new sessionid, the old session should be terminated. I found a lot of help on SO already: here and ...
13
votes
1answer
4k views

How does Apache 2.0 license differ from GPL?

I don't know much about the full GPL license other than that it's very restrictive to anyone wanting to use GPL anywhere near closed-source code. How does Apache 2.0 license compare with GPL and other ...
12
votes
5answers
5k views

Make .git directory web inaccessible

I have a website that I use github (closed source) to track changes and update site. The only problem is, it appears the .git directory is accessible via the web. How can I stop this and still be able ...
12
votes
2answers
5k views

Apache Error on Mac OS X Lion

I keep getting this error on my apache install. I have php module enabled on it. Rest is the standard installation [Thu Dec 08 06:46:42 2011] [error] [client 127.0.0.1] File does not exist: ...
12
votes
3answers
28k views

How to serve all existing static files directly with NGINX, but proxy to Apache the rest?

location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; if (-f $request_filename) { ...
12
votes
1answer
11k views

Setting up Git Server on Windows With git-http-backend.exe

I am in the process of setting up a Git server (1.7.2.3) on a WS 2008 machine using Apache and git-http-backend.exe. I have been following a good tut here. I have the GUI working, I can annoymously ...
11
votes
7answers
5k 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 ...
11
votes
3answers
7k views

How Can I Have A Conditional .htaccess Block?

This is an Apache question you've probably come across before. I want to have one source package that I can deploy to my workstation, my staging server, and my production server, but for it to load ...
10
votes
4answers
10k views

How do you set up Python scripts to work in Apache 2.0?

I tried to follow a couple of googled up tutorials on setting up mod_python, but failed every time. Do you have a good, step-by step, rock-solid howto? My dev box is OS X, production - Centos.
10
votes
2answers
3k views

How does Phusion Passenger reuse threads and processes?

I am setting up an Apache2 webserver running multiple Ruby on Rails web applications with Phusion Passenger. I know that Passenger spawns Ruby processes for handling requests. I have the following ...
10
votes
1answer
3k views

SSL on Apache2 with WSGI

I am trying to set up SSL on a Django site I maintain and having a bit of trouble setting up my VirtualHost with SSL. I followed the instructions here but every time I try to restart apache, it tells ...
10
votes
2answers
4k views

How to reload apache configuration for a site without restarting apache

I have edited the variable AllowOverride for one of my websites in sites-enabled directory. How do I reload the new configuration without restarting apache? Is it possible?
10
votes
4answers
13k views

Configuring Ruby On Rails App in a subdirectory under Apache

I've got apache2.2 on windows. I'm trying to serve both subversion (/svn) and redmine (/redmine). I have svn running fine with this config: <Location /svn> DAV svn SVNParentPath ...
10
votes
3answers
3k views

How can I use post-commit hooks to copy committed files to a web directory from SVN?

My Ubuntu server has Apache and Subversion installed. I use this server as a staging server, purely for testing purposes. I use Apache to host the web application, and Subversion to keep versioned ...
10
votes
2answers
2k views

See anything wrong with my attempt to get Flask running? (mod_wsgi + virtualenv)

I have a VPS running a fresh install of Ubuntu 10.04 LTS. I'm trying to set up a live application using the Flask microframework, but it's giving me trouble. I took notes while I tried to get it ...
10
votes
2answers
2k views

4GB HTTP File Uploads Using jQuery-File-Upload, Apache and PHP

This problem seems directly related to the infamous 2GB limit and I'm not sure at this atge if its a 32bit PHP issue. I've seen the comments related to HTTP not being designed for such large files. ...
9
votes
5answers
2k views

How do I ignore the Perl shebang on Windows with Apache 2?

I have set up a local Perl web environment on my Windows machine. The application I'm working on is originally from a Linux server, and so the shebang for source .pl files look like so: ...
9
votes
4answers
11k views

Apache Multiple VirtualDocumentRoot

Using Apache2 on a Linux system is there a way to have multiple VirtualDocumentRoot using mod_vhost_alias? This is naming convention I am currently using and would like to continue to use: host ...
9
votes
2answers
7k views

Proxying with SSL

I have a Linux host running Apache and a Windows host running IIS. I have a domain that points to the Linux host and need to relay (proxy) requests for it to IIS; I thus have the following virtual ...
9
votes
8answers
19k views

tortoisesvn - Error REPORT request failed on ../../../!svn/vcc/default

Users attempting to check out files from a particular Subversion 1.4.x repository with Apache 2.2 on Windows 2003 have suddenly begun getting an error message in their log windows upon checkout with ...
8
votes
1answer
4k views

Ruby on Rails 3 + Apache2 + Phusion Passenger: Bundler::GemNotFound exception

I'm trying to deploy a Rails app on an Apache2 server by using Phusion Passenger. While everything works well locally, I am getting the infamous "Bundler::GemNotFound" error while deploying: Could ...
8
votes
4answers
17k views

.htaccess for cakephp

I'm trying to get a CakePHP application to work. For this, I've set up a brand new Debian installation, updated the configuration and put everything in /var/www, which has the following content: app ...
8
votes
5answers
8k views

Is it possible to put binary image data into html markup and then get the image displayed as usual in any browser?

It's an important security issue and I'm sure this should be possible. A simple example: You run a community portal. Users are registered and upload their pictures. Your application gives security ...
8
votes
2answers
15k views

Apache2 Reverse Proxy to an end-point that requires BasicAuth but want to hide this from user

Basically my scenario is that I have an internal website that requires a SINGLE hard-coded username and password to access (and this can't be turned off, only changed). I am exposing this website ...
8
votes
1answer
5k views

Tomcat, keep session when moving from HTTPS to HTTP

I have a Java application running on Tomcat 6.0.29, with Apache 2.2.3 in front. The login page uses HTTPS, while most pages use HTTP. If a user tries to access a page (HTTP) that is login protected, ...
8
votes
2answers
4k views

Which Apache2 modules can I safely disable?

These are my enabled mods: alias auth_basic authz_default authz_groupfile authz_host authz_user autoindex deflate dir env mime negotiation php5 reqtimeout rewrite setenvif status I'm attempting to ...
8
votes
1answer
2k views

Understanding apache RewriteLog

I'd like to understand the output from RewriteLog in apache2. I have something like ...... (3) applying pattern '^/img(.*)' to uri '/api/marker/2' ...... (3) applying pattern '^/img/imagecache/(.+)' ...
8
votes
5answers
5k views

How do I make my Apache 2 server force a browser to open a file transfer dialogue?

How do I make my Apache 2 server force a browser to open a file transfer dialogue if the URL points to a file with a .pln or .psa extension? I have a simple LAMP server with CentOS 5, Apache 2, MYSQL ...
8
votes
4answers
281 views

Zend / Apache2: Getting 302 Found when requesting url several times

I am programming a REST API with Zend framework. When calling the url several times (e.g. 1000 times with 1 request per second), in about 0.2 % of the cases instead of getting 200 OK as a response I ...

1 2 3 4 5 65