Fallback to HTTP when no cert is available and letsencrypt is enabled, fixes #35
parent
25d8b9e614
commit
a0eeb76fbe
@ -0,0 +1,27 @@
|
|||||||
|
# Basic configuration
|
||||||
|
user nginx;
|
||||||
|
worker_processes 1;
|
||||||
|
error_log /dev/stderr info;
|
||||||
|
pid /var/run/nginx.pid;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
# Standard HTTP configuration with slight hardening
|
||||||
|
include /etc/nginx/mime.types;
|
||||||
|
default_type application/octet-stream;
|
||||||
|
access_log /dev/stdout;
|
||||||
|
sendfile on;
|
||||||
|
keepalive_timeout 65;
|
||||||
|
server_tokens off;
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
|
||||||
|
location /.well-known/acme-challenge {
|
||||||
|
proxy_pass http://admin:8081;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [[ ! -z ENABLE_CERTBOT && ! -f /certs/cert.pem ]]; then
|
||||||
|
cp /etc/nginx/nginx.conf.fallback /etc/nginx/nginx.conf
|
||||||
|
fi
|
||||||
|
|
||||||
|
nginx -g 'daemon off;'
|
Loading…
Reference in New Issue