Add docker-compose example with Apache reverse-proxy

This commit is contained in:
Markus Opolka
2022-09-09 09:51:28 +02:00
parent 8ecd8012c5
commit e694afe33e
4 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<VirtualHost *:8080>
ServerAdmin admin@localhost.local
ServerName my.survey.localhost
ProxyPass / http://limesurvey:80/
ProxyPassReverse / http://limesurvey:80/
ProxyPreserveHost On
</VirtualHost>