mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 14:33:56 -05:00
slateport/nginx: add http prefixes
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
4e2669b411
commit
72e5c89695
|
@ -57,7 +57,7 @@ in {
|
|||
forceSSL = true;
|
||||
|
||||
locations."/" = {
|
||||
proxyPass = "${ip}:${toString 9091}";
|
||||
proxyPass = "http://${ip}:${toString 9091}";
|
||||
proxyWebsockets = true;
|
||||
|
||||
extraConfig = ''
|
||||
|
@ -84,7 +84,7 @@ in {
|
|||
forceSSL = true;
|
||||
|
||||
locations."/" = {
|
||||
proxyPass = "${ip}:${toString 4533}";
|
||||
proxyPass = "http://${ip}:${toString 4533}";
|
||||
proxyWebsockets = true;
|
||||
|
||||
extraConfig = ''
|
||||
|
@ -98,7 +98,7 @@ in {
|
|||
forceSSL = true;
|
||||
|
||||
locations."/" = {
|
||||
proxyPass = "${ip}:32400";
|
||||
proxyPass = "http://${ip}:${toString 32400}";
|
||||
proxyWebsockets = true;
|
||||
|
||||
extraConfig = ''
|
||||
|
@ -112,7 +112,7 @@ in {
|
|||
forceSSL = true;
|
||||
|
||||
locations."/" = {
|
||||
proxyPass = "${ip}:${toString 13378}";
|
||||
proxyPass = "http://${ip}:${toString 13378}";
|
||||
|
||||
extraConfig = ''
|
||||
client_max_body_size 500M;
|
||||
|
|
Loading…
Reference in a new issue