morph-rc/configuration/presets/nginx/reverse-proxy.nix

10 lines
150 B
Nix
Raw Normal View History

2019-08-07 22:14:43 +02:00
destination: {
locations."/" = {
proxyPass = destination;
proxyWebsockets = true;
extraConfig = ''
proxy_set_header Host $host;
'';
};
}