servnest
/
system
Archived
1
0
Fork 0
This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
system/config/share/nginx/onion.template

15 lines
225 B
Plaintext
Raw Permalink Normal View History

2021-08-29 17:39:12 +02:00
server {
listen [::1]:80;
server_name DOMAIN;
2021-08-29 21:41:15 +02:00
root /srv/ht/USER/ht/DIR;
include inc/errors.conf;
access_log off;
error_log off;
2021-08-29 17:39:12 +02:00
location / {
try_files $uri $uri.html $uri/ =404;
}
}