diff --git a/Docker/NginxProxy/default.conf b/Docker/NginxProxy/default.conf deleted file mode 100644 index ade49e5..0000000 --- a/Docker/NginxProxy/default.conf +++ /dev/null @@ -1,31 +0,0 @@ -server { - listen 80; - root /var/www/html; - index index.html index.htm index.nginx-debian.html; - - location / { - if ( $uri = '/index.html' ) { - add_header Cache-Control no-store always; - } - try_files $uri $uri/ /index.html; - } - -# Do not cache sw.js, required for offline-first updates. - location /sw.js { - add_header Cache-Control "no-cache"; - proxy_cache_bypass $http_pragma; - proxy_cache_revalidate on; - expires off; - access_log off; - } - - location /api { - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-NginX-Proxy true; - proxy_pass http://127.0.0.1:2210; - proxy_set_header Host $http_host; - proxy_cache_bypass $http_upgrade; - proxy_redirect off; - } -} diff --git a/aio_linux b/aio_linux index ec74cd0..9ed255a 100755 Binary files a/aio_linux and b/aio_linux differ diff --git a/aio_macos b/aio_macos index e516de6..2d96745 100755 Binary files a/aio_macos and b/aio_macos differ diff --git a/aio_windows.exe b/aio_windows.exe index 8716990..632d75c 100755 Binary files a/aio_windows.exe and b/aio_windows.exe differ