mirror of
https://github.com/hcengineering/huly-selfhost.git
synced 2026-09-27 20:14:58 +02:00
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com> Co-authored-by: veryCrunchy <me@verycrunchy.dev>
12 lines
178 B
Plaintext
12 lines
178 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name ${SERVER_ADDRESS};
|
|
|
|
location / {
|
|
proxy_pass http://localhost:8087;
|
|
include proxy_params;
|
|
}
|
|
}
|