mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-28 00:59:58 +00:00
8 lines
235 B
Plaintext
8 lines
235 B
Plaintext
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
# First attempt to serve request as file, then
|
|
# as directory, then fall back to redirecting to index.html
|
|
try_files $uri $uri/ $uri.html /index.html;
|
|
}
|