OS ubuntu
nginxが起動出来ません。
nginx -t を実行すると
nginx: [emerg] "upstream" directive is not allowed here in /etc/nginx/nginx.conf:1
とエラーが出ます。
nginx.confの内容
upstream unicorn { server unix:/tmp/unicorn.sock; } server { listen 80 default_server; server_name localhost; access_log /var/log/nginx/sample_access.log; error_log /var/log/nginx/sample_error.log; root /app/sample; client_max_body_size 100m; error_page 404 /404.html; error_page 500 502 503 504 /500.html; try_files $uri/index.html $uri @unicorn; location @unicorn { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_pass http://unicorn; } }
原因が分かる方がいらしたら教えて下さい
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2015/05/25 20:49
2015/05/27 18:35