|
| 1 | +############################################################# |
| 2 | +# Replace nginx configuration directly in this file, |
| 3 | +# removing the need to perform error-prone replacements |
| 4 | +# at build time. |
| 5 | +# |
| 6 | +# For run-time replacements, ie, consuming environment vars, |
| 7 | +# add to the run.d/nginx script |
| 8 | +############################################################# |
| 9 | + |
| 10 | +user nobody; |
| 11 | +worker_processes auto; |
| 12 | + |
| 13 | +pid /tmp/nginx.pid; |
| 14 | + |
| 15 | +events { |
| 16 | + # @see http://serverfault.com/questions/209014/how-can-i-observe-what-nginx-is-doing-to-solve-1024-worker-connections-are-n |
| 17 | + worker_connections 1024; |
| 18 | +} |
| 19 | + |
| 20 | +http { |
| 21 | + |
| 22 | + include mime.types; |
| 23 | + default_type application/octet-stream; |
| 24 | + |
| 25 | + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' |
| 26 | + '$status $body_bytes_sent "$http_referer" ' |
| 27 | + '"$http_user_agent" "$http_x_forwarded_for" NGINX_SERVER'; |
| 28 | + |
| 29 | + error_log /dev/stdout info; |
| 30 | + access_log /dev/stdout main; |
| 31 | + |
| 32 | + sendfile on; |
| 33 | + #tcp_nopush on; |
| 34 | + |
| 35 | + keepalive_timeout 65; |
| 36 | + |
| 37 | + #gzip on; |
| 38 | + |
| 39 | + client_body_temp_path /tmp/client_body; |
| 40 | + fastcgi_temp_path /tmp/fastcgi_temp; |
| 41 | + proxy_temp_path /tmp/proxy_temp; |
| 42 | + scgi_temp_path /tmp/scgi_temp; |
| 43 | + uwsgi_temp_path /tmp/uwsgi_temp; |
| 44 | + |
| 45 | + server { |
| 46 | + listen 80; |
| 47 | + server_name localhost; |
| 48 | + |
| 49 | + #charset koi8-r; |
| 50 | + |
| 51 | + location / { |
| 52 | + root html; |
| 53 | + index index.html index.htm; |
| 54 | + } |
| 55 | + |
| 56 | + #error_page 404 /404.html; |
| 57 | + |
| 58 | + # redirect server error pages to the static page /50x.html |
| 59 | + # |
| 60 | + error_page 500 502 503 504 /50x.html; |
| 61 | + location = /50x.html { |
| 62 | + root html; |
| 63 | + } |
| 64 | + |
| 65 | + # proxy the PHP scripts to Apache listening on 127.0.0.1:80 |
| 66 | + # |
| 67 | + #location ~ \.php$ { |
| 68 | + # proxy_pass http://127.0.0.1; |
| 69 | + #} |
| 70 | + |
| 71 | + # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 |
| 72 | + # |
| 73 | + #location ~ \.php$ { |
| 74 | + # root html; |
| 75 | + # fastcgi_pass 127.0.0.1:9000; |
| 76 | + # fastcgi_index index.php; |
| 77 | + # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; |
| 78 | + # include fastcgi_params; |
| 79 | + #} |
| 80 | + |
| 81 | + # deny access to .htaccess files, if Apache's document root |
| 82 | + # concurs with nginx's one |
| 83 | + # |
| 84 | + #location ~ /\.ht { |
| 85 | + # deny all; |
| 86 | + #} |
| 87 | + } |
| 88 | + |
| 89 | + |
| 90 | + # another virtual host using mix of IP-, name-, and port-based configuration |
| 91 | + # |
| 92 | + #server { |
| 93 | + # listen 8000; |
| 94 | + # listen somename:8080; |
| 95 | + # server_name somename alias another.alias; |
| 96 | + |
| 97 | + # location / { |
| 98 | + # root html; |
| 99 | + # index index.html index.htm; |
| 100 | + # } |
| 101 | + #} |
| 102 | + |
| 103 | + |
| 104 | + # HTTPS server |
| 105 | + # |
| 106 | + #server { |
| 107 | + # listen 443 ssl; |
| 108 | + # server_name localhost; |
| 109 | + |
| 110 | + # ssl_certificate cert.pem; |
| 111 | + # ssl_certificate_key cert.key; |
| 112 | + |
| 113 | + # ssl_session_cache shared:SSL:1m; |
| 114 | + # ssl_session_timeout 5m; |
| 115 | + |
| 116 | + # ssl_ciphers HIGH:!aNULL:!MD5; |
| 117 | + # ssl_prefer_server_ciphers on; |
| 118 | + |
| 119 | + # location / { |
| 120 | + # root html; |
| 121 | + # index index.html index.htm; |
| 122 | + # } |
| 123 | + #} |
| 124 | + |
| 125 | +} |
0 commit comments