Files
server_proxy/proxy/files/nginx.conf
Pascal a3f5fc413f [fix] rng() now outputs positive int and increased nginx name bucket
- [fix] changed od flag from -i to -d to generate unsigned numbers
 - the param -i can create negative numbers in dash
 - [fix] increased server_names_hash_bucket_size to 64
 - to accommodate for large domain names with (many) subdomains
2020-05-27 16:30:10 -04:00

48 lines
1.1 KiB
Nginx Configuration File

worker_processes 1;
events { worker_connections 1024; }
# required for non root
pid /tmp/nginx.pid;
http {
# required for non root
client_body_temp_path /tmp/client_temp;
proxy_temp_path /tmp/proxy_temp_path;
fastcgi_temp_path /tmp/fastcgi_temp;
uwsgi_temp_path /tmp/uwsgi_temp;
scgi_temp_path /tmp/scgi_temp;
client_max_body_size 1m;
# set larger name bucket for large domain names
server_names_hash_bucket_size 64;
server {
listen 8080 default_server;
# prevent redirecting to 8080 port
# (e.g. when trailing slash is missed)
port_in_redirect off;
# letsencrypt
location /.well-known/acme-challenge/ {
root /service/html/certbot;
}
location /check {
# set alias (instead of root) to not append /check to path
alias /service/html/check;
}
location / {
return 302 https://$host$request_uri;
}
}
# the following variable is automatically populated via entrypoint.sh
#<SERVER>
}