mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
14 lines
303 B
Plaintext
14 lines
303 B
Plaintext
# environment variables
|
|
# WEB_REVERSE_PROXY_PORT ${WEB_REVERSE_PROXY_PORT}
|
|
server {
|
|
listen 443 default_server http2;
|
|
|
|
ssl on;
|
|
ssl_certificate /etc/ssl/cert1.pem;
|
|
ssl_certificate_key /etc/ssl/privkey1.pem;
|
|
|
|
location / {
|
|
proxy_pass http://node:${WEB_REVERSE_PROXY_PORT};
|
|
}
|
|
}
|