This repository has been archived on 2023-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
loki/proxy/nginx-conf.d/wiki.wojciechkozlowski.eu.conf
Wojciech Kozlowski 4b4997c34c Add GitLab
2017-09-16 22:39:30 +01:00

18 lines
399 B
Plaintext

server {
listen 80;
server_name wiki.wojciechkozlowski.eu;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_pass http://docker_wiki;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}