mirror of
https://github.com/friendica/friendica
synced 2024-11-18 09:03:42 +00:00
28 lines
699 B
Text
28 lines
699 B
Text
<VirtualHost *:8080>
|
|
ServerAdmin webmaster@localhost
|
|
ServerName ${ServerName}
|
|
ServerAlias ${ServerAlias}
|
|
|
|
DocumentRoot ${DocumentRoot}
|
|
|
|
<Directory ${DocumentRoot}>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
|
|
<Location /server-status>
|
|
SetHandler server-status
|
|
Order deny,allow
|
|
Allow from all
|
|
</Location>
|
|
|
|
# Possible values include: debug, info, notice, warn, error, crit,
|
|
# alert, emerg.
|
|
LogLevel warn
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/${ServerName}-error.log
|
|
CustomLog ${APACHE_LOG_DIR}/${ServerName}-access.log combined
|
|
|
|
</VirtualHost>
|