1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/rehook/nginx.conf
2020-10-27 18:20:06 +08:00

24 lines
676 B
Nginx Configuration File

server {
listen 80;
server_name rehook.example.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name rehook.example.com;
ssl_certificate ssl/example.com.crt;
ssl_certificate_key ssl/example.com.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/htpasswd;
location / {
proxy_pass http://127.0.0.1:9001;
}
location /h/ {
auth_basic "off";
proxy_pass http://127.0.0.1:9000;
}
}