b71f0ea0d7
- Allow avatar to be uploaded to local fs. - Renamed star avatar - Allow uploads up to 100Mb file size
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
server {
|
|
server_name cartodb.localhost *.cartodb.localhost;
|
|
|
|
client_max_body_size 100M;
|
|
|
|
location ^~ /(user/.*/)?api/v1/maps {
|
|
proxy_set_header Host $host;
|
|
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_pass http://127.0.0.1:3000;
|
|
}
|
|
|
|
location ^~ /(user/.*/)?api/v1/map {
|
|
proxy_set_header Host $host;
|
|
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_pass http://127.0.0.1:8181;
|
|
}
|
|
|
|
location ^~ /(user/.*/)?/api/v2/sql {
|
|
proxy_set_header Host $host;
|
|
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_pass http://127.0.0.1:8080;
|
|
}
|
|
|
|
location / {
|
|
proxy_set_header Host $host;
|
|
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_pass http://127.0.0.1:3000;
|
|
}
|
|
|
|
error_log /var/log/nginx/cartodb_error.log;
|
|
access_log /var/log/nginx/cartodb_access.log;
|
|
}
|