mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
13 lines
321 B
Text
13 lines
321 B
Text
<Directory /app/html/>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
|
|
<VirtualHost *:80>
|
|
ServerName localhost
|
|
DocumentRoot /app/html
|
|
ProxyPreserveHost On
|
|
ProxyPass /prefix/ http://127.0.0.1:8001/
|
|
Header add X-Proxied-By "Apache2 Debian"
|
|
</VirtualHost>
|