𝙼
Size: a a a
I
𝙼
CV
CV
P
P
P
P
server {
listen 80;
listen [::]:80;
server_name torrent.pinkie.com;
# reverse proxy
location / {
proxy_pass http://localhost:9091;
}
}
VK
VK
P
server {
listen 80;
listen [::]:80;
server_name torrent.pinkie.com;
# reverse proxy
location / {
proxy_pass http://localhost:9091;
# proxy_http_version 1.1;
# proxy_cache_bypass $http_upgrade;
# proxy_set_header Upgrad $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-Host $host;
# proxy_set_header X-Forwarded-Port $server_port;
}
}
P
P
VK
P
VK
P