17 lines
389 B
Plaintext
17 lines
389 B
Plaintext
|
server {
|
||
|
listen *:7575 so_keepalive=on;
|
||
|
listen [::]:7575 so_keepalive=on;
|
||
|
|
||
|
location / {
|
||
|
root /usr/share/redxen/homepage;
|
||
|
autoindex on;
|
||
|
limit_except GET HEAD {
|
||
|
deny all;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
location = /telegram {
|
||
|
return 302 https://t.me/joinchat/RSK4t6hPtkJDLYBO;
|
||
|
}
|
||
|
}
|