1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-23 08:07:35 +00:00
bramw_baserow/docs/installation/configuration-files/nginx.conf
Nigel Gott 13bb140618 Add all-in-one image used as a base by cloudron/heroku.
Signed-off-by: Nigel Gott <nigel@baserow.io>
2022-02-28 13:56:55 +00:00

95 lines
2.2 KiB
Nginx Configuration File

# Backend
server {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
gzip on;
gzip_disable "msie6";
listen 80;
server_name "*YOUR_BACKEND_DOMAIN*";
proxy_read_timeout 1800s;
client_max_body_size 0; # avoid HTTP 413 for large image uploads
# required to avoid HTTP 411: see Issue #1486 (https://github.com/dotcloud/docker/issues/1486)
chunked_transfer_encoding on;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_http_version 1.1;
proxy_pass_request_headers on;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
}
# Web frontend
server {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
gzip on;
gzip_disable "msie6";
listen 80;
server_name "*YOUR_WEB_FRONTEND_DOMAIN*";
proxy_read_timeout 1800s;
client_max_body_size 0; # avoid HTTP 413 for large image uploads
# required to avoid HTTP 411: see Issue #1486 (https://github.com/dotcloud/docker/issues/1486)
chunked_transfer_encoding on;
location / {
proxy_pass http://127.0.0.1:3000;
proxy_pass_request_headers on;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
# Media
server {
listen 80;
server_name "*YOUR_MEDIA_DOMAIN*";
autoindex off;
gzip on;
gzip_disable "msie6";
location / {
if ($arg_dl) {
add_header Content-disposition "attachment; filename=$arg_dl";
}
root /baserow/media;
}
location /user_files {
if ($arg_dl) {
add_header Content-disposition "attachment; filename=$arg_dl";
}
root /baserow/media;
}
location /export_files {
if ($arg_dl) {
add_header Content-disposition "attachment; filename=$arg_dl";
}
root /baserow/media;
}
}