nginx/sites/pve.conf

10 lines
222 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 pve.tronnet.net;
include /etc/nginx/snippets/ssl-params.conf;
location / {
proxy_pass https://geigatron-0-pve.tn:8006;
include /etc/nginx/snippets/proxy-params.conf;
}
2023-04-01 04:18:56 +00:00
}