cmc/dotfiles
Using GNU Stow to manage my dotfiles.
clone: git clone https://gitbay.org/cmc/dotfiles.git
86f2f7d0a67f4501bd1e22a208dab0e591f9a74b
verified · cmc
author: Christian Cleberg <hello@cleberg.net> · 2026-04-19T04:05:13Z
linux/nginx/etc/nginx/conf.d/bb.conf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) new file mode 100644 @@ -0,0 +1,23 @@ +server { + listen 443 ssl; + http2 on; + server_name bb.zerolabs.sh; + + include custom.d/tls/ssl_engine.conf; + include custom.d/tls/certificate_files_zerolabs_sh.conf; + include custom.d/tls/policy_strict.conf; + include custom.d/basic.conf; + location / { + proxy_pass $backend_address; + include custom.d/reverse_proxy/basic.conf; + proxy_read_timeout 120s; + proxy_send_timeout 120s; + } + include custom.d/security/robots_index_only.conf; +} + +server { + listen 80; + server_name bb.zerolabs.sh; + return 301 https://bb.zerolabs.sh$request_uri; +}