From 7472af714aef7b6ce20c5fe4b12f97cfc0cffa5c Mon Sep 17 00:00:00 2001 From: Michael C Date: Thu, 6 Jan 2022 18:49:49 -0500 Subject: [PATCH] missing semicolons --- nginx/nginx.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index f84c2bd..6ef2d44 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -100,7 +100,7 @@ http { #access_log /etc/nginx/logs/requests.log no_ip buffer=64k; location /api/skipSegments { - include /etc/nginx/cors.conf + include /etc/nginx/cors.conf; #return 200 "[]"; proxy_pass http://backend_$request_method; #proxy_cache CACHEZONE; @@ -117,14 +117,14 @@ http { } location /api/getTopUsers { - include /etc/nginx/cors.conf + include /etc/nginx/cors.conf; proxy_pass http://backend_GET; proxy_cache CACHEZONE; proxy_cache_valid 20m; } location /api/getTotalStats { - include /etc/nginx/cors.conf + include /etc/nginx/cors.conf; proxy_pass http://backend_GET; proxy_cache CACHEZONE; proxy_cache_valid 20m; @@ -132,14 +132,14 @@ http { } location /api/getTopCategoryUsers { - include /etc/nginx/cors.conf + include /etc/nginx/cors.conf; proxy_pass http://backend_GET; proxy_cache CACHEZONE; proxy_cache_valid 20m; } location /api/getVideoSponsorTimes { - include /etc/nginx/cors.conf + include /etc/nginx/cors.conf; proxy_pass http://backend_GET; } @@ -184,7 +184,7 @@ http { #} location /api { - include /etc/nginx/cors.conf + include /etc/nginx/cors.conf; proxy_pass http://backend_POST; }