Compare commits
2 Commits
fd9358c8ef
...
3ca99ab655
Author | SHA1 | Date |
---|---|---|
Nathan McCarty | 3ca99ab655 | |
Nathan McCarty | e6f4152767 |
|
@ -122,6 +122,8 @@ in with lib; {
|
||||||
# bind = SUPER, M, exit,
|
# bind = SUPER, M, exit,
|
||||||
bind = SUPER, E, exec, dolphin
|
bind = SUPER, E, exec, dolphin
|
||||||
bind = SUPER, V, togglefloating,
|
bind = SUPER, V, togglefloating,
|
||||||
|
bind = SUPER SHIFT, V, togglefloating,
|
||||||
|
bind = SUPER SHIFT, V, pin,
|
||||||
bind = SUPER, P, pseudo, # dwindle
|
bind = SUPER, P, pseudo, # dwindle
|
||||||
bind = SUPER, B, togglesplit, # dwindle
|
bind = SUPER, B, togglesplit, # dwindle
|
||||||
|
|
||||||
|
|
|
@ -203,11 +203,26 @@
|
||||||
"jellyfin.mccarty.io" = {
|
"jellyfin.mccarty.io" = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
useACMEHost = "mccarty.io";
|
useACMEHost = "mccarty.io";
|
||||||
locations."/" = {
|
locations = {
|
||||||
proxyPass = "http://100.104.25.128:8096";
|
"/socket" = {
|
||||||
extraConfig = ''
|
proxyPass = "http://100.104.25.128:8096";
|
||||||
allow all;
|
extraConfig = ''
|
||||||
'';
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Protocol $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Host $http_host;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
"/" = {
|
||||||
|
proxyPass = "http://100.104.25.128:8096";
|
||||||
|
extraConfig = ''
|
||||||
|
allow all;
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"jellyseerr.mccarty.io" = {
|
"jellyseerr.mccarty.io" = {
|
||||||
|
|
Loading…
Reference in New Issue