forked from pub-solar/infra
fix: add host header to collabora nginx proxy_pass
This commit is contained in:
parent
8ad19f72fc
commit
7b4b79f5d4
|
@ -9,7 +9,10 @@
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
|
|
||||||
locations."/".proxyPass = "http://127.0.0.1:9980";
|
locations."/".extraConfig = ''
|
||||||
|
proxy_pass http://127.0.0.1:9980;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
|
|
Loading…
Reference in a new issue