mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
18 lines
509 B
Django/Jinja
18 lines
509 B
Django/Jinja
# Root directory goes to Lokole web server
|
|
ProxyPass {{ lokole_url }} http://unix:{{lokole_domain_socket}}
|
|
|
|
# /static directory is stored on filesystem
|
|
Alias {{ lokole_url }}/static {{ lokole_install_path }}
|
|
|
|
<Directory {{ lokole_install_path }}>
|
|
Options FollowSymLinks
|
|
|
|
# Don't allow modifications in static directory
|
|
Require all granted
|
|
<LimitExcept GET HEAD OPTIONS>
|
|
Require all denied
|
|
</LimitExcept>
|
|
</Directory>
|
|
|
|
# Disable TRACE to prevent cross-site tracing
|
|
TraceEnable off
|