mirror of
https://github.com/c0mmando/hackliberty-conf.git
synced 2025-01-19 11:51:39 -05:00
18 lines
414 B
Plaintext
18 lines
414 B
Plaintext
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name maubot.*;
|
|
|
|
include /config/nginx/ssl.conf;
|
|
|
|
location / {
|
|
include /config/nginx/proxy.conf;
|
|
include /config/nginx/resolver.conf;
|
|
set $upstream_app maubot;
|
|
set $upstream_port 29316;
|
|
set $upstream_proto http;
|
|
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
|
}
|
|
}
|