Add cert scripts; update readme; update gitignore; add nginx
This commit is contained in:
parent
91c5eb1d9d
commit
ae3d5e4df7
9 changed files with 301 additions and 30 deletions
18
env.template
18
env.template
|
@ -34,7 +34,25 @@ AUTHENTIK_LISTEN__TRUSTED_PROXY_CIDRS="172.18.0.0/16"
|
|||
# MaxMind GeoIP
|
||||
GEOIPUPDATE_ACCOUNT_ID=765001
|
||||
|
||||
|
||||
# PostgreSQL configuration
|
||||
PG_USER=authentik
|
||||
POSTGRES_DB=authentik
|
||||
|
||||
|
||||
# Nginx configuration
|
||||
NGINX_HTTP_PORT=8080
|
||||
NGINX_HTTPS_PORT=8443
|
||||
NGINX_RESOLVER=1.1.1.1
|
||||
NGINX_SERVERNAME=sso.base23.de
|
||||
|
||||
# NGINX SSL Config for nginx 1.27.2, intermediate config, OpenSSL 3.0.14
|
||||
NGINX_SSL_SESSION_TIMEOUT=1d
|
||||
NGINX_SSL_SESSION_CACHE=shared:MozSSL:10m # about 40000 sessions
|
||||
NGINX_SSL_PROTOCOLS=TLSv1.2 TLSv1.3
|
||||
NGINX_SSL_CIPHERS=ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305
|
||||
NGINX_SSL_PREFER_SERVER_CIPHERS=off
|
||||
NGINX_HEADER_STRICT_TRANSPORT_SECURITY='"max-age=63072000" always'
|
||||
NGINX_SSL_STAPLING=on
|
||||
NGINX_SSL_STAPLING_VERIFY=on
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue