1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00
budibase/hosting/nginx.dev.conf

226 lines
6 KiB
Plaintext
Raw Normal View History

2022-01-12 08:33:22 +13:00
user nginx;
2022-01-15 02:44:40 +13:00
error_log /var/log/nginx/error.log debug;
2022-01-12 08:33:22 +13:00
pid /var/run/nginx.pid;
worker_processes auto;
2022-01-15 02:44:40 +13:00
worker_rlimit_nofile 33282;
2022-01-12 08:33:22 +13:00
events {
2022-01-14 02:27:02 +13:00
worker_connections 1024;
2022-01-12 08:33:22 +13:00
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
proxy_set_header Host $host;
2022-01-12 08:33:22 +13:00
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" '
'response_time=$upstream_response_time proxy_host=$proxy_host upstream_addr=$upstream_addr';
access_log /var/log/nginx/access.log main;
2022-01-14 02:27:02 +13:00
2022-01-12 08:33:22 +13:00
map $http_upgrade $connection_upgrade {
default "upgrade";
}
upstream app-service {
server ${PROXY_ADDRESS}:4001;
keepalive 32;
}
upstream worker-service {
server ${PROXY_ADDRESS}:4002;
keepalive 32;
}
upstream builder {
server ${PROXY_ADDRESS}:3000;
keepalive 32;
}
2022-01-12 08:33:22 +13:00
server {
2022-01-14 02:27:02 +13:00
listen 10000 default_server;
2022-01-12 08:33:22 +13:00
server_name _;
client_max_body_size 50000m;
ignore_invalid_headers off;
proxy_buffering off;
2022-01-12 08:33:22 +13:00
error_page 502 503 504 /error.html;
location = /error.html {
root /usr/share/nginx/html;
internal;
}
2022-01-12 08:33:22 +13:00
location /db/ {
2022-01-14 02:27:02 +13:00
proxy_pass http://couchdb-service:5984;
2022-01-12 08:33:22 +13:00
rewrite ^/db/(.*)$ /$1 break;
}
2022-01-14 02:27:02 +13:00
location ~ ^/api/(system|admin|global)/ {
proxy_read_timeout 120s;
proxy_connect_timeout 120s;
proxy_send_timeout 120s;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header Connection "";
proxy_pass http://worker-service;
2022-01-12 08:33:22 +13:00
}
location /api/backups/ {
proxy_read_timeout 1800s;
proxy_connect_timeout 1800s;
proxy_send_timeout 1800s;
proxy_pass http://app-service;
proxy_http_version 1.1;
proxy_set_header Connection "";
}
2022-01-12 08:33:22 +13:00
location /api/ {
proxy_read_timeout 120s;
proxy_connect_timeout 120s;
proxy_send_timeout 120s;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header Connection "";
proxy_pass http://app-service;
2022-01-12 08:33:22 +13:00
}
location = / {
proxy_read_timeout 120s;
proxy_connect_timeout 120s;
proxy_send_timeout 120s;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header Connection "";
proxy_pass http://app-service;
}
2022-01-14 02:27:02 +13:00
location /app_ {
proxy_read_timeout 120s;
proxy_connect_timeout 120s;
proxy_send_timeout 120s;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header Connection "";
proxy_pass http://app-service;
2022-01-12 08:33:22 +13:00
}
2022-03-24 05:45:06 +13:00
location /app {
proxy_read_timeout 120s;
proxy_connect_timeout 120s;
proxy_send_timeout 120s;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header Connection "";
proxy_pass http://app-service;
2022-01-12 08:33:22 +13:00
}
location /embed {
rewrite /embed/(.*) /app/$1 break;
proxy_pass http://app-service;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header x-budibase-embed "true";
add_header x-budibase-embed "true";
add_header Content-Security-Policy "frame-ancestors *";
}
2022-01-12 08:33:22 +13:00
location /builder {
proxy_read_timeout 120s;
proxy_connect_timeout 120s;
proxy_send_timeout 120s;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header Connection "";
proxy_pass http://builder;
2022-01-12 08:33:22 +13:00
rewrite ^/builder(.*)$ /builder/$1 break;
}
location /builder/ {
2022-01-15 02:44:40 +13:00
proxy_http_version 1.1;
proxy_set_header Host $host;
2022-01-15 02:44:40 +13:00
proxy_set_header Connection $connection_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_read_timeout 120s;
proxy_connect_timeout 120s;
proxy_send_timeout 120s;
proxy_pass http://builder;
2022-01-12 08:33:22 +13:00
}
2022-08-19 22:09:20 +12:00
location /vite/ {
proxy_pass http://builder;
proxy_read_timeout 120s;
proxy_connect_timeout 120s;
proxy_send_timeout 120s;
2022-08-19 22:09:20 +12:00
rewrite ^/vite(.*)$ /$1 break;
}
location /socket/ {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_pass http://app-service;
2022-08-16 21:25:16 +12:00
}
2022-01-12 08:33:22 +13:00
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_connect_timeout 300;
proxy_http_version 1.1;
proxy_set_header Connection "";
chunked_transfer_encoding off;
2022-01-14 02:27:02 +13:00
proxy_pass http://minio-service:9000;
2022-01-12 08:33:22 +13:00
}
2022-01-15 02:44:40 +13:00
location /files/signed/ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# IMPORTANT: Signed urls will inspect the host header of the request.
# Normally a signed url will need to be generated with a specified client host in mind.
# To support dynamic hosts, e.g. some unknown self-hosted installation url,
# use a predefined host header. The host 'minio-service' is also used at the time of url signing.
proxy_set_header Host minio-service;
proxy_connect_timeout 300;
proxy_http_version 1.1;
proxy_set_header Connection "";
chunked_transfer_encoding off;
proxy_pass http://minio-service:9000;
rewrite ^/files/signed/(.*)$ /$1 break;
}
2022-01-15 02:44:40 +13:00
client_header_timeout 60;
client_body_timeout 60;
keepalive_timeout 60;
gzip off;
gzip_comp_level 4;
2022-01-12 08:33:22 +13:00
}
}