mirror of
https://git.anonymousland.org/anonymousland/infrastructure.git
synced 2025-02-01 11:24:53 -05:00
22 lines
573 B
Plaintext
22 lines
573 B
Plaintext
|
server {
|
||
|
listen 69 ;
|
||
|
server_name 3ytf372ddnksxmglxkytfa5yehglcy7ecemy5pbdipkioyonbdubdxid.onion;
|
||
|
|
||
|
# add_header X-Frame-Options "SAMEORIGIN" always;
|
||
|
|
||
|
# client_max_body_size 0;
|
||
|
|
||
|
location / {
|
||
|
# include /config/nginx/proxy.conf;
|
||
|
# include /config/nginx/resolver.conf;
|
||
|
set $upstream_app element;
|
||
|
set $upstream_port 80;
|
||
|
set $upstream_proto http;
|
||
|
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||
|
|
||
|
# proxy_set_header Range $http_range;
|
||
|
# proxy_set_header If-Range $http_if_range;
|
||
|
}
|
||
|
|
||
|
}
|