-
Notifications
You must be signed in to change notification settings - Fork 3
/
nginx.conf
43 lines (34 loc) · 999 Bytes
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
events {}
http {
# 기본 MIME 타입 파일 포함
include /etc/nginx/mime.types;
default_type application/octet-stream;
# SVG MIME 타입 추가
types {
image/svg+xml svg;
image/svg+xml svgz;
}
server {
listen 80;
server_name xn--hz2b60wa3n.site;
# React 앱 정적 파일 제공
root /usr/share/nginx/html;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
}
server {
listen 443 ssl;
server_name xn--hz2b60wa3n.site;
# SSL 인증서 경로 설정
ssl_certificate /etc/letsencrypt/live/xn--hz2b60wa3n.site/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/xn--hz2b60wa3n.site/privkey.pem;
# React 앱 정적 파일 제공
root /usr/share/nginx/html;
index index.html index.htm;
location / {
try_files $uri $uri/ /index.html;
}
}
}