mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 15:10:38 +01:00
17 lines
327 B
Text
17 lines
327 B
Text
## btcpay_tor.conf
|
|
|
|
server {
|
|
listen localhost:23002;
|
|
listen [::1]:23002;
|
|
server_name _;
|
|
|
|
access_log /var/log/nginx/access_btcpay.log;
|
|
error_log /var/log/nginx/error_btcpay.log;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:23000;
|
|
|
|
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
|
}
|
|
|
|
}
|