forked from 6garlics/tori-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx_conf.txt
205 lines (172 loc) · 8.08 KB
/
nginx_conf.txt
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
keepalive_timeout 65;
types_hash_max_size 4096;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
# server {
# listen 80;
# listen [::]:80;
# server_name _;
# root /usr/share/nginx/html;
# Load configuration files for the default server block.
# include /etc/nginx/default.d/*.conf;
# error_page 404 /404.html;
# location = /404.html {
# }
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# }
# }
upstream bemystory {
server 43.202.81.68:8081;
}
server {
listen 80;
listen [::]:80;
underscores_in_headers on;
location / {
#proxy_hide_header Access-Control-Allow-Origin;
proxy_pass http://bemystory;
proxy_read_timeout 1000;
# 올바른 Preflight Request 인지 확인하기 위한 변수
set $FLAG "";
if ($http_origin ~* 'https://be-my-story.vercel.app') {
set $FLAG "A";
}
# Preflight Reuquest인지 확인하기
if ($request_method = OPTIONS) {
set $FLAG "${FLAG}B";
# 모든 Origin 허용
add_header "Access-Control-Allow-Origin" $http_origin always;
# PUT DELETE 허용하지 않음
add_header "Access-Control-Allow-Methods" "GET, POST, DELETE, OPTIONS, HEAD, PUT" always;
# 사용하지 않는 헤더도 허용
#add_header "Access-Control-Allow-Headers" "api_key, Authorization, Origin, X-Requested-With, Content-Type, Accept" always;
add_header "Access-Control-Allow-Headers" "Content-Type, Authorization" always;
add_header "Access-Control-Allow-Credentials" "true" always;
add_header "Access-Control-Max-Age" "3600" always;
return 204;
}
if ($request_method = GET){
# 모든 Origin 허용
add_header "Access-Control-Allow-Origin" $http_origin always;
# PUT DELETE 허용하지 않음
add_header "Access-Control-Allow-Methods" "GET, POST, DELETE, OPTIONS, HEAD, PUT" always;
# 사용하지 않는 헤더도 허용
#add_header "Access-Control-Allow-Headers" "api_key, Authorization, Origin, X-Requested-With, Content-Type, Accept" always;
add_header "Access-Control-Allow-Headers" "Content-Type, Authorization" always;
add_header "Access-Control-Allow-Credentials" "true" always;
#return 200;
}
if ($request_method = POST){
# 모든 Origin 허용
add_header "Access-Control-Allow-Origin" $http_origin always;
# PUT DELETE 허용하지 않음
add_header "Access-Control-Allow-Methods" "GET, POST, DELETE, OPTIONS, HEAD, PUT" always;
# 사용하지 않는 헤더도 허용
#add_header "Access-Control-Allow-Headers" "api_key, Authorization, Origin, X-Requested-With, Content-Type, Accept" always;
add_header "Access-Control-Allow-Headers" "Content-Type, Authorization" always;
add_header "Access-Control-Allow-Credentials" "true" always;
#return 201;
}
if ($request_method = PUT){
# 모든 Origin 허용
add_header "Access-Control-Allow-Origin" $http_origin always;
# PUT DELETE 허용하지 않음
add_header "Access-Control-Allow-Methods" "GET, POST, DELETE, OPTIONS, HEAD, PUT" always;
# 사용하지 않는 헤더도 허용
#add_header "Access-Control-Allow-Headers" "api_key, Authorization, Origin, X-Requested-With, Content-Type, Accept" always;
add_header "Access-Control-Allow-Headers" "Content-Type, Authorization" always;
add_header "Access-Control-Allow-Credentials" "true" always;
#return 201;
}
if ($request_method = DELETE){
# 모든 Origin 허용
add_header "Access-Control-Allow-Origin" $http_origin always;
# PUT DELETE 허용하지 않음
add_header "Access-Control-Allow-Methods" "GET, POST, DELETE, OPTIONS, HEAD, PUT" always;
# 사용하지 않는 헤더도 허용
#add_header "Access-Control-Allow-Headers" "api_key, Authorization, Origin, X-Requested-With, Content-Type, Accept" always;
add_header "Access-Control-Allow-Headers" "Content-Type, Authorization" always;
add_header "Access-Control-Allow-Credentials" "true" always;
#return 204;
}
if ($request_method = PATCH){
# 모든 Origin 허용
add_header "Access-Control-Allow-Origin" $http_origin always;
# PUT DELETE 허용하지 않음
add_header "Access-Control-Allow-Methods" "GET, POST, DELETE, OPTIONS, HEAD, PUT" always;
# 사용하지 않는 헤더도 허용
#add_header "Access-Control-Allow-Headers" "api_key, Authorization, Origin, X-Requested-With, Content-Type, Accept" always;
add_header "Access-Control-Allow-Headers" "Content-Type, Authorization" always;
add_header "Access-Control-Allow-Credentials" "true" always;
#return 201;
}
# 허용된 Origin인지 확인하기
#if ($http_origin ~* ('https://be-my-story.vercel.app/')) {
# set $FLAG "${FLAG}B";
#}
# 위의 조건들이 TRUE면 요청을 허용한다.
if ($FLAG = "AB") {
add_header "Access-Control-Allow-Origin" $http_origin always;
add_header "Access-Control-Allow-Methods" "GET, POST, DELETE, PUT, OPTIONS" always;
add_header "Access-Control-Allow-Headers, Authorization" always;
add_header "Access-Control-Max-Age" "3600" always;
add_header "Access-Control-Allow-Credentials" "true" always;
return 204;
}
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
#proxy_redirect off;
}
}
# Settings for a TLS enabled server.
#
# server {
# listen 443 ssl http2;
# listen [::]:443 ssl http2;
# server_name _;
# root /usr/share/nginx/html;
#
# ssl_certificate "/etc/pki/nginx/server.crt";
# ssl_certificate_key "/etc/pki/nginx/private/server.key";
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 10m;
# ssl_ciphers PROFILE=SYSTEM;
# ssl_prefer_server_ciphers on;
#
# # Load configuration files for the default server block.
# include /etc/nginx/default.d/*.conf;
#
# error_page 404 /404.html;
# location = /404.html {
# }
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# }
# }
}