mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
11 lines
229 B
Plaintext
11 lines
229 B
Plaintext
|
<VirtualHost *:80>
|
||
|
<Directory {{ app_path }}/public>
|
||
|
Allow From All
|
||
|
AllowOverride All
|
||
|
Options -Indexes
|
||
|
</Directory>
|
||
|
|
||
|
DocumentRoot {{ app_path }}/public
|
||
|
ServerName {{ fqdn }}
|
||
|
</VirtualHost>
|