mirror of
https://github.com/RoboSats/robosats.git
synced 2025-07-17 16:23:13 +00:00
70 lines
2.6 KiB
Plaintext
70 lines
2.6 KiB
Plaintext
# Libre Bazaar Mainnet Locations
|
|
location /mainnet/bazaar/static/assets/avatars/ {
|
|
proxy_pass http://mainnet_bazaar/static/assets/avatars/;
|
|
}
|
|
|
|
location /mainnet/bazaar/api/ {
|
|
# if ($request_method = 'OPTIONS') {
|
|
# add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
|
# add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
|
# add_header 'Access-Control-Max-Age' 1728000;
|
|
# add_header 'Content-Type' 'text/plain; charset=utf-8';
|
|
# add_header 'Content-Length' 0;
|
|
# return 204;
|
|
# }
|
|
# if ($request_method = 'POST') {
|
|
# add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
|
# add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
|
# add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
|
# }
|
|
# if ($request_method = 'GET') {
|
|
# add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
|
# add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
|
|
# add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
|
|
# }
|
|
proxy_pass http://mainnet_bazaar/api/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
location /mainnet/bazaar/ws/ {
|
|
proxy_pass http://mainnet_bazaar/ws/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
location /mainnet/bazaar/relay/ {
|
|
proxy_pass http://mainnet_bazaar/relay/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Origin $http_origin;
|
|
proxy_set_header Host $host;
|
|
|
|
add_header Access-Control-Allow-Origin *;
|
|
}
|
|
|
|
# LibreBazaar Coordinator Testnet Locations
|
|
location /test/bazaar/static/assets/avatars/ {
|
|
proxy_pass http://testnet_bazaar/static/assets/avatars/;
|
|
}
|
|
|
|
location /testnet/bazaar/api/ {
|
|
proxy_pass http://testnet_bazaar/api/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
location /testnet/bazaar/ws/ {
|
|
proxy_pass http://testnet_bazaar/ws/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "Upgrade";
|
|
proxy_set_header Host $host;
|
|
} |