add scripts to create nginx virtual host for service
This commit is contained in:
27
nginx.conf.template
Normal file
27
nginx.conf.template
Normal file
@@ -0,0 +1,27 @@
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name @SERVER_NAME@;
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl;
|
||||
listen [::]:443 ssl;
|
||||
|
||||
client_max_body_size 100G;
|
||||
|
||||
server_name @SERVER_NAME@;
|
||||
|
||||
access_log /var/log/nginx/@SERVER_NAME@/access.log;
|
||||
error_log /var/log/nginx/@SERVER_NAME@/error.log;
|
||||
|
||||
location /.well-known/ {
|
||||
root /var/www/html/;
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
location / {
|
||||
proxy_pass http://127.0.0.1:@PORT@/;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user