diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..43e0c37 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,17 @@ +# Enable the rewrite module +RewriteEngine On + +# Reverse proxy all requests to the API to the API CGI script +# See mod_rewrite docs: https://httpd.apache.org/docs/current/mod/mod_rewrite.html +RewriteRule ^api/(.*)$ http://localhost:5000/api/$1 [P] + +# Defer requests that are not files to client side routing +# See: https://create-react-app.dev/docs/deployment/#serving-apps-with-client-side-routing +RewriteCond %{REQUEST_FILENAME} !-f +RewriteRule ^ index.html [QSA,L] + +# Uncomment the following line to serve a maintenance message. +#DirectoryIndex index-maintenance.html + +# Diable Auth +Satisfy any \ No newline at end of file diff --git a/public/index-maintenance.html b/public/index-maintenance.html new file mode 100644 index 0000000..9f35883 --- /dev/null +++ b/public/index-maintenance.html @@ -0,0 +1,67 @@ + + + + + + + + webqueue2 + + + + +
+
+

Under Maintenance

+
+

webqueue2 is having some work done. Please check back later.

+

Mar 14 2021 @ 11:30 PM EDT

+
+
+ + + \ No newline at end of file