Update of /cvsroot/phpslash/phpslash-dev/contrib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28198
Modified Files:
phpslash-apache-virtualhost
Log Message:
customized to suit the new debian package
Index: phpslash-apache-virtualhost
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/contrib/phpslash-apache-virtualhost,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** phpslash-apache-virtualhost 21 Oct 2004 17:21:17 -0000 1.1
--- phpslash-apache-virtualhost 23 Nov 2004 21:08:32 -0000 1.2
***************
*** 1,4 ****
# vim: ft=apache :
! # Luis Mondesi < lems1 __AT__ users sourceforge net >
# This is a sample virtualhost site for apache/apache2. To enable this
# simple drop this file in your "conf.d" directory (for apache1)
--- 1,4 ----
# vim: ft=apache :
! # Luis Mondesi < lems1 __AT__ php-slash.org >
# This is a sample virtualhost site for apache/apache2. To enable this
# simple drop this file in your "conf.d" directory (for apache1)
***************
*** 6,10 ****
# a2enable phpslash-apache-virtualhost
#
! # It assumes that phpslash has been unpacked in "/var/www/phpslash". And
# that your server IP is 127.0.0.1 and servername is "localhost".
#
--- 6,10 ----
# a2enable phpslash-apache-virtualhost
#
! # It assumes that phpslash has been unpacked in "/usr/share/phpslash". And
# that your server IP is 127.0.0.1 and servername is "localhost".
#
***************
*** 21,26 ****
ServerName localhost
# - last, set these two lines to the path of /path/to/phpslash/public_html (file path; not visible from the URL):
! DocumentRoot /var/www/phpslash/public_html
! <Directory /var/www/phpslash/public_html>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
--- 21,26 ----
ServerName localhost
# - last, set these two lines to the path of /path/to/phpslash/public_html (file path; not visible from the URL):
! DocumentRoot /usr/share/phpslash/public_html
! <Directory /usr/share/phpslash/public_html>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
***************
*** 50,54 ****
# </Directory>
! ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
--- 50,54 ----
# </Directory>
! ErrorLog /var/log/apache2/phpslash-error.log
# Possible values include: debug, info, notice, warn, error, crit,
***************
*** 56,78 ****
LogLevel warn
! CustomLog /var/log/apache2/access.log combined
! ServerSignature On
!
! Alias /icons/ "/usr/share/apache2/icons/"
! <Directory "/usr/share/apache2/icons">
! Options Indexes MultiViews
! AllowOverride None
! Order allow,deny
! Allow from all
! </Directory>
!
! Alias /doc/ "/usr/share/doc/"
! <Directory "/usr/share/doc/">
! Options Indexes MultiViews FollowSymLinks
! AllowOverride None
! Order deny,allow
! Deny from all
! Allow from 127.0.0.0/255.0.0.0 ::1/128
! </Directory>
!
</VirtualHost>
--- 56,77 ----
LogLevel warn
! CustomLog /var/log/apache2/phpslash-access.log combined
! ServerSignature Off
! # uncomment the following if needed:
! # Alias /icons/ "/usr/share/apache2/icons/"
! # <Directory "/usr/share/apache2/icons">
! # Options Indexes MultiViews
! # AllowOverride None
! # Order allow,deny
! # Allow from all
! # </Directory>
! #
! # Alias /doc/ "/usr/share/doc/"
! # <Directory "/usr/share/doc/">
! # Options Indexes MultiViews FollowSymLinks
! # AllowOverride None
! # Order deny,allow
! # Deny from all
! # Allow from 127.0.0.0/255.0.0.0 ::1/128
! # </Directory>
</VirtualHost>
|