Add nginx conf

This commit is contained in:
Edgar P. Burkhart 2022-05-21 15:59:21 +02:00
parent 7a23e798e5
commit 3b127c157b
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
2 changed files with 16 additions and 4 deletions

11
nummi.nginx Normal file
View file

@ -0,0 +1,11 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name nummi.edgarpierre.fr;
location / {
include conf/50-proxy.conf;
proxy_pass http://unix:/run/nummi.socket;
}
}