mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-27 04:13:11 +03:00
14 lines
255 B
Plaintext
14 lines
255 B
Plaintext
|
server {
|
||
|
listen 443 ssl http2;
|
||
|
listen [::]:443 ssl http2;
|
||
|
|
||
|
server_name your.domain;
|
||
|
|
||
|
access_log /var/log/nginx/hledger_access.log main;
|
||
|
error_log /var/log/nginx/hledger_error.log info;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://127.0.0.1:6001;
|
||
|
}
|
||
|
}
|