]> git.pld-linux.org Git - packages/nginx.git/blobdiff - nginx-standard.conf
Make the default configs work
[packages/nginx.git] / nginx-standard.conf
index b26571844df361f6ec8a8b4b457a0f86b683d5f4..50125d31fba40293cf509233796984a65932f48d 100644 (file)
@@ -1,5 +1,4 @@
 user                   nginx nginx;
-worker_processes       5;
 error_log              /var/log/nginx/nginx-standard_error.log;
 pid                    /var/run/nginx-standard.pid;
 
@@ -16,24 +15,9 @@ http {
                                '"$status" $body_bytes_sent "$http_referer" '
                                '"$http_user_agent" "$http_x_forwarded_for"';
        access_log      /var/log/nginx/nginx-standard_access.log        main;
-       sendfile        on;
-       tcp_nopush      on;
-       tcp_nodelay     on;
-       server_names_hash_bucket_size   128;
-       types_hash_max_size     2048;
-       types_hash_bucket_size  64;
-       #keepalive_timeout      0;
-       keepalive_timeout       65;
-       limit_zone      test-limit      $binary_remote_addr     10m;
-       #gzip   on;
-       #gzip_http_version      1.0;
-       #gzip_comp_level        2;
-       #gzip_proxied   any;
-       #gzip_types     text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
 
        server {
                listen          80;
-
                # listen 443 ssl;
 
                # Leave only secure protocols (so disable unsecure SSLv2/SSLv3)
@@ -53,40 +37,14 @@ http {
 
                server_name     localhost;
                access_log      /var/log/nginx/nginx-standard_access.log  main;
-               client_max_body_size    10M;
 
                location / {
                        autoindex       on;
                        root    /home/services/nginx/html;
                        index   index.html index.htm index.php;
-                       limit_conn      test-limit      15;
                }
 
                include webapps.d/*.conf;
-
-#              location /nginx_status {
-#                      stub_status     on;
-#                      access_log      off;
-#                      allow   127.0.0.1;
-#                      deny    all;
-#              }
-               
-#              error_page      404     /404.html;
-#              error_page      500 502 503 504 /50x.html;
-#              location = /50x.html {
-#                      root    /home/services/http/error-pages;
-#              }
-#              location = /404.html {
-#                      root    /home/services/http/error-pages;
-#              }
-
-#              location ~ \.php$ {
-#                      include         /etc/nginx/fastcgi.params;
-#                      fastcgi_pass    127.0.0.1:1026;
-#                      fastcgi_index   index.php;
-#                      fastcgi_param   SCRIPT_FILENAME /home/services/nginx/html$fastcgi_script_name;
-#              }
-
        }
 
        include vhosts.d/*.conf;
This page took 0.029602 seconds and 4 git commands to generate.