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

@@ -85,6 +85,12 @@ For further details on the settings see: https://manual.limesurvey.org/Data_encr
# Reverse Proxy configuration
If you are running LimeSurvey behind a Reverse Proxy you might need some additional configuration in the Proxy. For example:
* Apache: `ProxyPreserveHost On`
* Nginx: `fastcgi_param HTTP_HOST my-survey.example.local;`
* Traefik: Set the Host Header explicitly via a customRequestHeaders
## Traefik example
**Hint**: if you want to deploy LimeSurvey on a sub-path (e.g. https://example.com/limesurvey) you have to set the BASE_URL and adjust the Containers Webservers. See the docker-compose Traefik example in the repository.