We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad9b248 commit bf62cdbCopy full SHA for bf62cdb
nginx/filesystem/etc/nginx/conf.d/nginx.conf
@@ -51,7 +51,10 @@ server {
51
}
52
53
location ~ ^/(background|user/auth|user/login(?:/desktop)?|vm-admin|twitch-bot(?:/config)?|imdb-search) {
54
- return 404;
+ root /usr/share/nginx/html;
55
+ # First attempt to serve request as file, then
56
+ # as directory, then redirect to index(angular) if no file found.
57
+ try_files $uri $uri/ /index.html;
58
59
60
location / {
0 commit comments