mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-26 04:51:08 -05:00
13 lines
370 B
Plaintext
13 lines
370 B
Plaintext
<VirtualHost *:80>
|
|
ServerName stikked
|
|
DocumentRoot /var/www/stikked/htdocs
|
|
ErrorLog ${APACHE_LOG_DIR}/stikked-error_log
|
|
CustomLog ${APACHE_LOG_DIR}/stikked-access_log common
|
|
<Directory "/var/www/stikked/htdocs">
|
|
Options +FollowSymLinks
|
|
AllowOverride All
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
</VirtualHost>
|