mirror of
https://asciireactor.com/otho/stashbox
synced 2024-11-21 22:05:06 +00:00
Minor fixes to nginx.
This commit is contained in:
parent
c9748bd58d
commit
f6fe844849
@ -1,7 +1,11 @@
|
|||||||
# I assign interface hostnames in /etc/hosts to keep track
|
# I assign interface hostnames in /etc/hosts to keep track
|
||||||
# since this app goes years without maintenance.
|
# since this app goes years without maintenance.
|
||||||
|
|
||||||
|
::1 localhost localhost6
|
||||||
fe80::deed:feed resolver.stashbox
|
fe80::deed:feed resolver.stashbox
|
||||||
fe80::db web.stashbox
|
fe80::db web.stashbox
|
||||||
fe80::feed plex.stashbox scp.stashbox
|
fe80::feed plex.stashbox scp.stashbox
|
||||||
fe80::beef app.stashbox
|
fe80::beef app.stashbox
|
||||||
127.0.0.1 ip4.stashbox
|
|
||||||
|
127.0.0.1 localhost localhost4
|
||||||
|
127.0.0.2 ip4.stashbox
|
||||||
|
@ -6,13 +6,13 @@ events {
|
|||||||
|
|
||||||
http {
|
http {
|
||||||
upstream plexmediaserver {
|
upstream plexmediaserver {
|
||||||
server localhost:32400;
|
# Plex only listens on legacy IP by default.
|
||||||
|
server localhost4:32400;
|
||||||
keepalive 32;
|
keepalive 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen plex.stashbox:80;
|
listen plex.stashbox:80;
|
||||||
resolver resolver.stashbox;
|
|
||||||
server_name plex.*;
|
server_name plex.*;
|
||||||
gzip on;
|
gzip on;
|
||||||
gzip_vary on;
|
gzip_vary on;
|
||||||
@ -21,8 +21,6 @@ http {
|
|||||||
gzip_types text/plain text/css text/xml application/xml text/javascript application/x-javascript image/svg+xml;
|
gzip_types text/plain text/css text/xml application/xml text/javascript application/x-javascript image/svg+xml;
|
||||||
gzip_disable "MSIE [1-6]\.";
|
gzip_disable "MSIE [1-6]\.";
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header Referer localhost;
|
|
||||||
proxy_set_header Origin $scheme://localhost:$server_port;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
Loading…
Reference in New Issue
Block a user