19 lines
472 B
Smarty
19 lines
472 B
Smarty
<VirtualHost *:80>
|
|
ServerName __SERVER_NAME__
|
|
#ServerAlias www.example.com
|
|
|
|
ServerAdmin __SERVER_ADMIN__
|
|
|
|
DocumentRoot /usr/share/airtime/public
|
|
DirectoryIndex index.php
|
|
|
|
SetEnv APPLICATION_ENV "production"
|
|
|
|
<Directory /usr/share/airtime/public>
|
|
Options -Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
</VirtualHost>
|