servnest-mkosi/install/nginx/sites/subpath.conf

13 lines
292 B
Plaintext
Raw Normal View History

# Maps HTTP subpath to filesystem subpath
2022-12-22 02:07:26 +01:00
server {
listen [::1]:42443 ssl http2;
listen 127.0.0.1:42443 ssl http2;
2023-01-29 21:14:36 +01:00
server_name ht.servnest.test;
2022-12-22 02:07:26 +01:00
ssl_certificate /etc/ssl/certs/ht.servnest.test.crt;
ssl_certificate_key /etc/ssl/private/ht.servnest.test.key;
2022-12-22 02:07:26 +01:00
include inc/proxy.conf;
2022-12-22 02:07:26 +01:00
}