nginx/sites/client.conf

13 lines
281 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 client.tronnet.net;
include /etc/nginx/snippets/ssl-acme.conf;
2023-04-26 22:10:02 +00:00
location / {
2023-04-26 22:15:52 +00:00
include /etc/nginx/snippets/error-pages.conf;
proxy_pass http://proxmoxaas.dmz:8080;
2023-04-26 22:10:02 +00:00
}
location /api/ {
proxy_pass http://proxmoxaas.dmz:80;
2023-04-26 22:10:02 +00:00
}
2023-04-01 04:18:56 +00:00
}