about summary refs log tree commit diff stats
path: root/tools/conf/etc/nginx/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tools/conf/etc/nginx/nginx.conf')
-rw-r--r--tools/conf/etc/nginx/nginx.conf49
1 files changed, 0 insertions, 49 deletions
diff --git a/tools/conf/etc/nginx/nginx.conf b/tools/conf/etc/nginx/nginx.conf
deleted file mode 100644
index e757df6..0000000
--- a/tools/conf/etc/nginx/nginx.conf
+++ /dev/null
@@ -1,49 +0,0 @@
-#
-# /etc/nginx/nginx.conf - nginx server configuration
-#
-
-user www;
-worker_processes auto;
-
-error_log syslog:server=unix:/dev/log,facility=daemon debug;
-
-pid /var/run/nginx.pid;
-
-events {
-    worker_connections  1024;
-}
-
-http {
-    include       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"';
-
-    sendfile        on;
-    #tcp_nopush     on;
-
-    # Allow attach iso to wiki
-    #client_max_body_size 8M;
-    client_max_body_size 30M;
-    #keepalive_timeout  65;
-    keepalive_timeout  120;
-    #client_body_timeout 12;
-    client_body_timeout 24;
-    #client_header_timeout 12;
-    client_header_timeout 24;
-
-    send_timeout 65;
-
-    gzip  on;
-    gzip_vary on;
-    #gzip_proxied any;
-    gzip_comp_level 9;
-    # gzip_buffers 16 8k;
-    # gzip_http_version 1.1;
-    gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
-
-    include /etc/nginx/sites-enabled/*.conf;
-}
-# End of file