mirror of
https://github.com/c0mmando/hackliberty-conf.git
synced 2025-02-22 15:49:50 -05:00
18 lines
419 B
Plaintext
18 lines
419 B
Plaintext
![]() |
server {
|
||
|
listen 443 ssl http2;
|
||
|
listen [::]:443 ssl http2;
|
||
|
|
||
|
server_name dimension.*;
|
||
|
|
||
|
include /config/nginx/ssl.conf;
|
||
|
|
||
|
location / {
|
||
|
include /config/nginx/proxy.conf;
|
||
|
include /config/nginx/resolver.conf;
|
||
|
set $upstream_app dimension;
|
||
|
set $upstream_port 8184;
|
||
|
set $upstream_proto http;
|
||
|
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||
|
}
|
||
|
}
|