* docs: split nginx configuration files to their own directory Signed-off-by: Xe Iaso <me@xeiaso.net> * test: add nginx config smoke test based on the config in the docs Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net>
29 lines
No EOL
587 B
Text
29 lines
No EOL
587 B
Text
# /etc/nginx/conf.d/server-mimi-techaro-lol.conf
|
|
|
|
server {
|
|
# Listen on 443 with SSL
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
http2 on;
|
|
|
|
# Slipstream via Anubis
|
|
include "conf-anubis.inc";
|
|
|
|
server_name mimi.techaro.lol;
|
|
|
|
ssl_certificate /techaro/pki/mimi.techaro.lol/cert.pem;
|
|
ssl_certificate_key /techaro/pki/mimi.techaro.lol/key.pem;
|
|
}
|
|
|
|
server {
|
|
listen unix:/tmp/nginx.sock;
|
|
|
|
server_name mimi.techaro.lol;
|
|
|
|
port_in_redirect off;
|
|
root "/srv/http/mimi.techaro.lol";
|
|
index index.html;
|
|
|
|
# Your normal configuration can go here
|
|
# location .php { fastcgi...} etc.
|
|
} |