Update vhost apache configuration: add port 80

* vhost should contain explicit port binding to port 80.
This commit is contained in:
Benjamin Dauvergne 2009-03-25 01:57:16 +00:00
parent 4ac87617fd
commit e495c1fe9f
3 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ SCGI (version 1.8 or later is recommended since they have SCGIMount directive).
An example configuration (mod_python, Apache 2) looks like this::
<VirtualHost www.example.com>
<VirtualHost www.example.com:80>
ServerAdmin webmaster@locahost
ServerName www.example.com
DocumentRoot /usr/share/authentic/web/
@ -47,7 +47,7 @@ An example configuration (mod_python, Apache 2) looks like this::
An other example configuration (SCGI, Apache 1.3)::
<VirtualHost *>
<VirtualHost *:80>
ServerAdmin webmaster@locahost
ServerName www.example.com
DocumentRoot /usr/share/authentic/web/

View File

@ -1,4 +1,4 @@
<VirtualHost *>
<VirtualHost *:80>
ServerName authentic.example.com
include /usr/share/authentic/apache2.conf
CustomLog /var/log/apache2/authentic-access.log combined

View File

@ -1,4 +1,4 @@
<VirtualHost *>
<VirtualHost *:80>
ServerName authentic.example.com
include /usr/share/authentic/apache2.conf
CustomLog /var/log/apache2/authentic-access.log combined