nginx/http/opns.conf

12 lines
251 B
Plaintext
Raw Normal View History

2023-04-01 04:18:56 +00:00
server {
2023-04-26 22:10:02 +00:00
listen 443 ssl http2;
server_name opns.tronnet.net;
2023-12-12 03:05:00 +00:00
include snippets/ssl-acme.conf;
include snippets/proxy-errors.conf;
include snippets/error-pages.conf;
2023-04-26 22:10:02 +00:00
location / {
proxy_pass https://10.0.0.1:10443;
proxy_redirect default;
2023-04-26 22:10:02 +00:00
}
2023-04-01 04:18:56 +00:00
}