0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-02-23 17:26:17 +00:00
Fernando Fernández 1f8aed8c0c chore(docker): trim more the image, always run setup (#2491)
This allows to simplify the custom entrypoints command a little bit
2024-11-06 22:51:07 +00:00

10 lines
347 B
Nginx Configuration File

server {
listen 80;
root ${ASSETS};
location / {
# First attempt to serve request as file, then as directory, then fall back to redirecting to index.html
# This is needed for history mode in Vue router: https://router.vuejs.org/guide/essentials/history-mode.html#nginx
try_files $uri $uri/ /index.html;
}
}