12 lines
199 B
Text
12 lines
199 B
Text
|
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;
|
||
|
}
|
||
|
}
|