Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/example-nginx-bisontrails.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ http {
server {
listen 7900;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass https://backend/ws;
proxy_set_header Authorization "Basic YOUR_BASE64_USERPASS";
proxy_set_header Host YOUR_NODE;
}
}

server {
listen 7899;
location / {
Expand Down
1 change: 1 addition & 0 deletions doc/example-nginx-blockdaemon.conf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ http {
server {
listen 7900;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Authorization "Bearer YOUR_AUTH_TOKEN_HERE";
Expand Down
1 change: 1 addition & 0 deletions doc/example-nginx-figment.conf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ http {
server {
listen 7900;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass https://backend/apikey/YOUR_AUTH_TOKEN_HERE/;
Expand Down