Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- root@e00:/etc/apache2/sites-enabled# ls
- 000-default e00.eu vps-admin.eu
- root@e00:/etc/apache2/sites-enabled# cat 000-default
- <VirtualHost *:80>
- ServerAdmin webmaster@localhost
- DocumentRoot /var/www
- <Directory />
- Options FollowSymLinks
- AllowOverride None
- </Directory>
- <Directory /var/www/>
- Options Indexes FollowSymLinks MultiViews
- AllowOverride None
- Order allow,deny
- allow from all
- </Directory>
- ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
- <Directory "/usr/lib/cgi-bin">
- AllowOverride None
- Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
- Order allow,deny
- Allow from all
- </Directory>
- ErrorLog ${APACHE_LOG_DIR}/error.log
- # Possible values include: debug, info, notice, warn, error, crit,
- # alert, emerg.
- LogLevel warn
- CustomLog ${APACHE_LOG_DIR}/access.log combined
- </VirtualHost>
- root@e00:/etc/apache2/sites-enabled# cat e00.eu
- <VirtualHost *:80>
- ServerAdmin [email protected]
- ServerName www.e00.eu
- ServerAlias e00.eu
- DocumentRoot /home/e00.eu/htdocs
- <Directory />
- Options FollowSymLinks
- AllowOverride None
- </Directory>
- <Directory /home/e00.eu/htdocs>
- Options Indexes FollowSymLinks MultiViews
- AllowOverride None
- Order allow,deny
- allow from all
- </Directory>
- ScriptAlias /cgi-bin/ /home/e00.eu/cgi-bin/
- <Directory "/home/e00.eu/cgi-bin">
- AllowOverride None
- Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
- Order allow,deny
- Allow from all
- </Directory>
- ErrorLog /home/e00.eu/logs/error.log
- # Possible values include: debug, info, notice, warn, error, crit,
- # alert, emerg.
- LogLevel warn
- CustomLog /home/e00.eu/logs/access.log combined
- </VirtualHost>
- root@e00:/etc/apache2/sites-enabled# cat vps-admin.eu
- <VirtualHost *:80>
- ServerAdmin [email protected]
- ServerName www.vps-admin.eu
- ServerAlias vps-admin.eu
- DocumentRoot /home/vps-admin.eu/htdocs
- <Directory />
- Options FollowSymLinks
- AllowOverride None
- </Directory>
- <Directory /home/vps-admin.eu/htdocs>
- Options Indexes FollowSymLinks MultiViews
- AllowOverride None
- Order allow,deny
- allow from all
- </Directory>
- ScriptAlias /cgi-bin/ /home/vps-admin.eu/cgi-bin/
- <Directory "/home/vps-admin.eu/cgi-bin">
- AllowOverride None
- Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
- Order allow,deny
- Allow from all
- </Directory>
- ErrorLog /home/vps-admin.eu/logs/error.log
- # Possible values include: debug, info, notice, warn, error, crit,
- # alert, emerg.
- LogLevel warn
- CustomLog /home/vps-admin.eu/logs/access.log combined
- </VirtualHost>
- root@e00:/etc/apache2/sites-enabled#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement