examples - nextcloud fix and moodle

This commit is contained in:
bunkerity
2020-10-26 22:40:33 +01:00
parent 2c33463af7
commit e4bdd4af5d
6 changed files with 66 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
location / {
if ($host = www.website.com) {
proxy_pass http://mymoodle:8443$request_uri;
}
}