diff options
author | Mark Longair <mhl@pobox.com> | 2012-09-27 21:06:10 +0100 |
---|---|---|
committer | Mark Longair <mhl@pobox.com> | 2012-09-27 21:07:30 +0100 |
commit | faae328530ec403eb864a96cc1b0af734dc82f19 (patch) | |
tree | 9c2b763997c1d705a8f530e1cc6def301ee438f3 /conf/httpd.conf-example | |
parent | 312c3b14fd1683973baca6dcf6b4f95e888064ab (diff) |
Switch install script to use nginx
This commit also reorganizes the files in conf/
Diffstat (limited to 'conf/httpd.conf-example')
-rw-r--r-- | conf/httpd.conf-example | 38 |
1 files changed, 3 insertions, 35 deletions
diff --git a/conf/httpd.conf-example b/conf/httpd.conf-example index 2cced0537..5d0fead38 100644 --- a/conf/httpd.conf-example +++ b/conf/httpd.conf-example @@ -1,41 +1,9 @@ # Apache configuration for FixMyStreet. # -# Add lines something like this to your /etc/apache2/sites-enabled/fixmystreet - -# replacing '/home/yourname/fixmystreet' with the path to your install +# This file should be included in an Apache <VirtualHost> section. An +# example of such a virtualhost configuration file can be found in the +# file apache-vhost.conf.example in this directory. # -# # FixMyStreet -# <VirtualHost *:80> -# ServerName fixmystreet.yourservername -# DocumentRoot /home/yourname/fixmystreet/web/ -# -# # Pull in the specific config -# Include /home/yourname/fixmystreet/conf/httpd.conf -# -# <Directory /home/yourname/fixmystreet/web> -# # You also need to enable cgi files to run as CGI scripts. For example: -# # on production servers these are run under fastcgi -# Options +ExecCGI -# AddHandler cgi-script .cgi -# AllowOverride None -# </Directory> -# -# <Location /admin> -# # -# # WARNING - enable auth here on production machine -# # -# </Location> -# -# Alias /admin/ /home/yourname/fixmystreet/web-admin/ -# -# Alias /jslib/ /home/yourname/fixmystreet/commonlib/jslib/ -# <Location /jslib> -# AddOutputFilter DEFLATE js -# Header append Cache-Control "no-transform" -# </Location> -# -# </VirtualHost> -# -# # Copyright (c) 2011 UK Citizens Online Democracy. All rights reserved. # Email: team@mysociety.org # WWW: http://www.mysociety.org |