66 lines
1.8 KiB
Nginx Configuration File
66 lines
1.8 KiB
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
# Unity WebGL 빌드 파일의 기본 경로
|
|
root /usr/share/nginx/html;
|
|
|
|
index index.html;
|
|
|
|
# 기본 파일 제공
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
expires max;
|
|
add_header Cache-Control "public, max-age=31536000";
|
|
}
|
|
|
|
# Gzip으로 압축된 WebAssembly 파일 처리
|
|
location ~ \.wasm\.gz$ {
|
|
gzip_static always;
|
|
add_header Content-Encoding gzip;
|
|
add_header Cache-Control "public, max-age=31536000";
|
|
default_type application/wasm;
|
|
try_files $uri =404;
|
|
}
|
|
|
|
# Gzip으로 압축된 JavaScript 파일 처리
|
|
location ~ \.js\.gz$ {
|
|
gzip_static always;
|
|
add_header Content-Encoding gzip;
|
|
add_header Content-Type application/javascript;
|
|
add_header Cache-Control "public, max-age=31536000";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
# Gzip으로 압축된 CSS 파일 처리
|
|
location ~ \.css\.gz$ {
|
|
gzip_static always;
|
|
add_header Content-Encoding gzip;
|
|
add_header Content-Type text/css;
|
|
add_header Cache-Control "public, max-age=31536000";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
# Gzip으로 압축된 HTML 파일 처리
|
|
location ~ \.html\.gz$ {
|
|
gzip_static always;
|
|
add_header Content-Encoding gzip;
|
|
add_header Content-Type text/html;
|
|
add_header Cache-Control "public, max-age=31536000";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
# Gzip으로 압축된 데이터 파일 처리
|
|
location ~ \.data\.gz$ {
|
|
gzip_static always;
|
|
add_header Content-Encoding gzip;
|
|
add_header Content-Type application/octet-stream;
|
|
add_header Cache-Control "public, max-age=31536000";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
# 404 에러 페이지 처리
|
|
error_page 404 /index.html;
|
|
}
|
|
|