8317fbde5c
- Impostata configurazione dinamica porte per apache
16 lines
400 B
Plaintext
16 lines
400 B
Plaintext
<VirtualHost *:$WEB_SERVER_PORT>
|
|
ServerAdmin me@mydomain.com
|
|
DocumentRoot ${WEB_DOCUMENT_ROOT}
|
|
ServerName ${SERVER_ALIAS}
|
|
|
|
<Directory ${WEB_DOCUMENT_ROOT}>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
|
|
</VirtualHost> |