passbolt example

This commit is contained in:
bunkerity
2020-11-04 11:16:26 +01:00
parent 3ec81cd849
commit e1274a6082
4 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
location / {
if ($host = www.website.com) {
proxy_pass https://mypassbolt:443$request_uri;
}
}