json files download
Justin Dorfman
jdorfman at netdna.com
Tue Nov 20 04:08:46 UTC 2012
@bach who is the owner & what permissions are on this file?:
/opt/local/etc/nginx/mime.types;
please run: ls -alh /opt/local/etc/nginx/mime.types
Also can you post your mime.types on pastebin or gist?
Regards,
Justin Dorfman <http://www.twitter.com/jdorfman>
NetDNA <http://www.netdna.com>™
The Science of Acceleration™
Email / gtalk: jdorfman at netdna.com
M: 818.485.1458
Skype: netdna-justind
Twitter: @jdorfman <http://www.twitter.com/jdorfman>
www.NetDNA.com <http://www.netdna.com/> | www.MaxCDN.com<http://www.maxcdn.com/>
@NetDNA <http://twitter.com/NetDNA> | @MaxCDN <http://twitter.com/MaxCDN>
On Mon, Nov 19, 2012 at 7:48 PM, bach <nginx-forum at nginx.us> wrote:
> Thanks Justin,
>
> here's how my config looks like. Please note the 2 Pyramid apps at the
> bottom, from which I am trying to server the json file.
> Anything obviously wrong with that setup that could be affecting the
> header?
>
> thanks
>
> ========================
> user www www;
> worker_processes 1;
>
> #error_log /var/log/nginx/error.log;
> #error_log /var/log/nginx/error.log notice;
> #error_log /var/log/nginx/error.log info;
>
> #pid /var/db/nginx/nginx.pid;
>
>
> events {
> # After increasing this value You probably should increase limit
> # of file descriptors (for example in start_precmd in startup script)
> worker_connections 1024;
> }
>
>
> http {
> include /opt/local/etc/nginx/mime.types;
> default_type application/octet-stream;
>
> #log_format main '$remote_addr - $remote_user [$time_local]
> "$request"
> '
> # '$status $body_bytes_sent "$http_referer" '
> # '"$http_user_agent" "$http_x_forwarded_for"';
>
> #access_log /var/log/nginx/access.log main;
>
> sendfile on;
> #tcp_nopush on;
>
> #keepalive_timeout 0;
> keepalive_timeout 65;
>
> #gzip on;
>
> server {
> listen 80;
> server_name localhost;
>
> #charset koi8-r;
>
> #access_log /var/log/nginx/host.access.log main;
>
> location / {
> root share/examples/nginx/html;
> index index.html index.htm;
> }
>
> #error_page 404 /404.html;
>
> # redirect server error pages to the static page /50x.html
> #
> error_page 500 502 503 504 /50x.html;
> location = /50x.html {
> root share/examples/nginx/html;
> }
> }
>
> #first pyramid App - App1
> server {
> listen 80;
> server_name app1.com www.app1.com;
>
> access_log /home/app1.com/web/env/access.log;
>
> 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;
>
> client_max_body_size 10m;
> client_body_buffer_size 128k;
> proxy_connect_timeout 60s;
> proxy_send_timeout 90s;
> proxy_read_timeout 90s;
> proxy_buffering off;
> proxy_temp_file_write_size 64k;
> proxy_pass http://127.0.0.1:5000;
> proxy_redirect off;
> }
> }
>
> # my second pyramid App - App2
> server {
> listen 80;
> server_name app2.com www.app2.com;
>
> access_log /home/app2.com/logs/access.log;
>
> 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;
>
> client_max_body_size 10m;
> client_body_buffer_size 128k;
> proxy_connect_timeout 60s;
> proxy_send_timeout 90s;
> proxy_read_timeout 90s;
> proxy_buffering off;
> proxy_temp_file_write_size 64k;
> proxy_pass http://127.0.0.1:5003;
> proxy_redirect off;
> }
> }
> }
> </pre>
>
> Posted at Nginx Forum:
> http://forum.nginx.org/read.php?2,227766,232994#msg-232994
>
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20121119/9ca6c685/attachment-0001.html>
More information about the nginx
mailing list