nginx/sites/ldap.conf
Arthur Lu f7663aea85 rename files with conf type,
cleanup other config files

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2023-03-31 21:32:29 -07:00

10 lines
237 B
Plaintext

server {
listen 443 ssl http2;
server_name ldap.tronnet.net;
include /etc/nginx/snippets/ssl-params.conf;
location / {
proxy_pass http://ldap.dmz:80;
include /etc/nginx/snippets/proxy-params.conf;
}
}