mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2024-12-03 03:30:43 +00:00
19 lines
613 B
Nginx Configuration File
19 lines
613 B
Nginx Configuration File
server {
|
|
listen 80 default_server;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_min_length 1024;
|
|
gzip_proxied expired no-cache no-store private auth;
|
|
gzip_types application/javascript application/json application/geo+json application/ld+json application/manifest+json application/rdf+xml application/rss+xml application/ttml+xml application/xml application/x-mpegURL text/css text/javascript text/plain text/vtt text/xml;
|
|
gzip_disable "MSIE [1-6]\.";
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
} |