diff --git a/config/nginx.conf.erb b/config/nginx.conf.erb deleted file mode 100644 index 106475dd..00000000 --- a/config/nginx.conf.erb +++ /dev/null @@ -1,84 +0,0 @@ -daemon off; -worker_processes auto; - -events { - use epoll; - accept_mutex on; - worker_connections 512; -} - -http { - gzip on; - gzip_comp_level 6; - gzip_min_length 512; - gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript; - gzip_vary on; - gzip_proxied any; - - server_tokens off; - - - access_log logs/access.log; - - - - error_log stderr error; - - - include mime.types; - default_type application/octet-stream; - sendfile on; - - #Must read the body in 5 seconds. - client_body_timeout 5; - - server { - listen 45176 reuseport; - charset UTF-8; - port_in_redirect off; - keepalive_timeout 5; - root client/build/; - - - - - - mruby_post_read_handler /app/bin/config/lib/ngx_mruby/headers.rb cache; - - location / { - mruby_set $fallback /app/bin/config/lib/ngx_mruby/routes_fallback.rb cache; - - try_files $uri $uri/ $fallback; - - } - - - - - - - - - location ~ ^/.*$ { - set $route /.*; - mruby_set $path /app/bin/config/lib/ngx_mruby/routes_path.rb cache; - mruby_set $fallback /app/bin/config/lib/ngx_mruby/routes_fallback.rb cache; - - try_files $uri $path $fallback; - - } - - - # need this b/c setting $fallback to =404 will try #{root}=404 instead of returning a 404 - location @404 { - return 404; - } - - # fallback proxy named match - - - # fallback redirects named match - - - } -}