diff options
author | jfederico <jesus@123it.ca> | 2021-04-08 14:38:03 -0400 |
---|---|---|
committer | jfederico <jesus@123it.ca> | 2021-04-08 14:38:03 -0400 |
commit | a07cfd330c349273af343e82fb8581d6bcfc849e (patch) | |
tree | 54163b03740154049c0b351cd28cac1f7c6c4a62 /data/proxy/nginx/nginx.conf | |
parent | e62fd6284be355d922e7623d1983b58fe7b6071c (diff) | |
download | scalelite-run-itzks-a07cfd330c349273af343e82fb8581d6bcfc849e.tar.gz scalelite-run-itzks-a07cfd330c349273af343e82fb8581d6bcfc849e.tar.bz2 scalelite-run-itzks-a07cfd330c349273af343e82fb8581d6bcfc849e.zip |
cleaned up nginx
Diffstat (limited to 'data/proxy/nginx/nginx.conf')
-rw-r--r-- | data/proxy/nginx/nginx.conf | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/data/proxy/nginx/nginx.conf b/data/proxy/nginx/nginx.conf deleted file mode 100644 index 981c619..0000000 --- a/data/proxy/nginx/nginx.conf +++ /dev/null @@ -1,37 +0,0 @@ -user nginx; -worker_processes 1; - -error_log /var/log/nginx/error.log warn; -pid /var/run/nginx.pid; - - -events { - worker_connections 1024; -} - - -http { - include /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 65; - - #gzip on; - - include /etc/nginx/conf.d/*.conf; - - ## - # Virtual Host Configs - ## - - include /etc/nginx/sites-enabled/*; -} |