1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-03-14 20:52:51 +00:00
bramw_baserow/docs/installation/configuration-files/nginx.conf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

95 lines
2.2 KiB
Nginx Configuration File
Raw Normal View History

# 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;
}
}