forked from baron/baron-sso
MIME 타입 추가, wasm mjs
This commit is contained in:
@@ -157,6 +157,9 @@ jobs:
|
|||||||
# [주의] DB 초기화 스크립트는 '새로운 볼륨'에서만 실행됨.
|
# [주의] DB 초기화 스크립트는 '새로운 볼륨'에서만 실행됨.
|
||||||
docker compose -f staging_pull_compose.yaml down || true
|
docker compose -f staging_pull_compose.yaml down || true
|
||||||
|
|
||||||
|
# 코드 변경 반영을 위해 build 수행 (userfront nginx.conf 등)
|
||||||
|
docker compose -f staging_pull_compose.yaml build --pull
|
||||||
|
|
||||||
docker compose -f staging_pull_compose.yaml up -d --remove-orphans
|
docker compose -f staging_pull_compose.yaml up -d --remove-orphans
|
||||||
|
|
||||||
# 배포 후 상태 확인 (실패 시 로그 출력을 위함)
|
# 배포 후 상태 확인 (실패 시 로그 출력을 위함)
|
||||||
|
|||||||
@@ -22,6 +22,10 @@ log_format json_combined escape=json
|
|||||||
server {
|
server {
|
||||||
listen 5000;
|
listen 5000;
|
||||||
include /etc/nginx/mime.types;
|
include /etc/nginx/mime.types;
|
||||||
|
types {
|
||||||
|
application/javascript mjs;
|
||||||
|
application/wasm wasm;
|
||||||
|
}
|
||||||
|
|
||||||
error_log /dev/stderr warn;
|
error_log /dev/stderr warn;
|
||||||
access_log /var/log/nginx/access.log json_combined;
|
access_log /var/log/nginx/access.log json_combined;
|
||||||
|
|||||||
Reference in New Issue
Block a user