mirror of
https://github.com/hcengineering/huly-selfhost.git
synced 2026-09-20 08:37:55 +02:00
12 lines
186 B
Plaintext
12 lines
186 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name ${SERVER_ADDRESS};
|
|
|
|
location / {
|
|
proxy_pass http://localhost:8087;
|
|
include proxy_params;
|
|
}
|
|
}
|