質問編集履歴
4
修正依頼がございました。cssとファイルの階層図を載せました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -281,3 +281,31 @@
|
|
281
281
|
```
|
282
282
|
|
283
283
|
を入力しているので、Gunicornは起動していると言う認識です。
|
284
|
+
|
285
|
+
|
286
|
+
|
287
|
+
### 修正 20210206
|
288
|
+
|
289
|
+
頂いた指摘を元に、追記いたします。
|
290
|
+
|
291
|
+
axよりauxの方が分かりやすいとご指摘いただきました。必要ないかもしれませんが、念のため記載しておきます。
|
292
|
+
|
293
|
+
```Linux
|
294
|
+
|
295
|
+
$ ps aux | grep gunicorn
|
296
|
+
|
297
|
+
xxx_xxx+ 21742 0.0 0.0 119436 928 pts/0 S+ 02:47 0:00 grep --color=auto gunicorn
|
298
|
+
|
299
|
+
```
|
300
|
+
|
301
|
+
また、gunicornのプロジェクトディレクトリの場所についてもご質問いただきました。以下で回答になっているかどうか分かりませんが、載せておきます。
|
302
|
+
|
303
|
+
```Linux
|
304
|
+
|
305
|
+
$ which gunicorn
|
306
|
+
|
307
|
+
~/QuantumGun/bin/gunicorn
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
```
|
3
修正依頼がございました。cssとファイルの階層図を載せました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -212,7 +212,7 @@
|
|
212
212
|
|
213
213
|
listen 80;
|
214
214
|
|
215
|
-
server_name
|
215
|
+
server_name xxxxxxxx;
|
216
216
|
|
217
217
|
root /usr/share/nginx/html;
|
218
218
|
|
2
nginx 設定修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -178,7 +178,7 @@
|
|
178
178
|
|
179
179
|
access_log /var/log/nginx/access.log main;
|
180
180
|
|
181
|
-
|
181
|
+
|
182
182
|
|
183
183
|
sendfile on;
|
184
184
|
|
@@ -192,7 +192,83 @@
|
|
192
192
|
|
193
193
|
|
194
194
|
|
195
|
+
include /etc/nginx/mime.types;
|
196
|
+
|
197
|
+
default_type application/octet-stream;
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
# Load modular configuration files from the /etc/nginx/conf.d directory.
|
202
|
+
|
203
|
+
# See http://nginx.org/en/docs/ngx_core_module.html#include
|
204
|
+
|
205
|
+
# for more information.
|
206
|
+
|
195
|
-
|
207
|
+
include /etc/nginx/conf.d/*.conf;
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
server {
|
212
|
+
|
213
|
+
listen 80;
|
214
|
+
|
215
|
+
server_name 3.12.54.144;
|
216
|
+
|
217
|
+
root /usr/share/nginx/html;
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
# Load configuration files for the default server block.
|
222
|
+
|
223
|
+
include /etc/nginx/default.d/*.conf;
|
224
|
+
|
225
|
+
|
226
|
+
|
227
|
+
location /static {
|
228
|
+
|
229
|
+
alias /usr/share/nginx/html/static;
|
230
|
+
|
231
|
+
}
|
232
|
+
|
233
|
+
location /media {
|
234
|
+
|
235
|
+
alias /usr/share/nginx/html/media;
|
236
|
+
|
237
|
+
}
|
238
|
+
|
239
|
+
location / {
|
240
|
+
|
241
|
+
proxy_set_header Host $http_host;
|
242
|
+
|
243
|
+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
244
|
+
|
245
|
+
proxy_set_header X-Forwarded-Proto $scheme;
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
proxy_pass http://127.0.0.1:8000;
|
250
|
+
|
251
|
+
}
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
error_page 404 /404.html;
|
256
|
+
|
257
|
+
location = /40x.html {
|
258
|
+
|
259
|
+
}
|
260
|
+
|
261
|
+
|
262
|
+
|
263
|
+
error_page 500 502 503 504 /50x.html;
|
264
|
+
|
265
|
+
location = /50x.html {
|
266
|
+
|
267
|
+
}
|
268
|
+
|
269
|
+
}
|
270
|
+
|
271
|
+
|
196
272
|
|
197
273
|
```
|
198
274
|
|
1
頂いた指摘に対して回答いたしました
test
CHANGED
File without changes
|
test
CHANGED
@@ -125,3 +125,83 @@
|
|
125
125
|
|
126
126
|
|
127
127
|
どうぞよろしくお願いいたします。
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
### 修正
|
132
|
+
|
133
|
+
nginxの設定について書きます。
|
134
|
+
|
135
|
+
```ここに言語を入力
|
136
|
+
|
137
|
+
# For more information on configuration, see:
|
138
|
+
|
139
|
+
# * Official English Documentation: http://nginx.org/en/docs/
|
140
|
+
|
141
|
+
# * Official Russian Documentation: http://nginx.org/ru/docs/
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
user nginx;
|
146
|
+
|
147
|
+
worker_processes auto;
|
148
|
+
|
149
|
+
error_log /var/log/nginx/error.log;
|
150
|
+
|
151
|
+
pid /run/nginx.pid;
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
|
156
|
+
|
157
|
+
include /usr/share/nginx/modules/*.conf;
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
events {
|
162
|
+
|
163
|
+
worker_connections 1024;
|
164
|
+
|
165
|
+
}
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
http {
|
170
|
+
|
171
|
+
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
172
|
+
|
173
|
+
'$status $body_bytes_sent "$http_referer" '
|
174
|
+
|
175
|
+
'"$http_user_agent" "$http_x_forwarded_for" "$request_body"';
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
access_log /var/log/nginx/access.log main;
|
180
|
+
|
181
|
+
nが
|
182
|
+
|
183
|
+
sendfile on;
|
184
|
+
|
185
|
+
tcp_nopush on;
|
186
|
+
|
187
|
+
tcp_nodelay on;
|
188
|
+
|
189
|
+
keepalive_timeout 65;
|
190
|
+
|
191
|
+
types_hash_max_size 2048;
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
"/etc/nginx/nginx.conf" 100L, 2823C
|
196
|
+
|
197
|
+
```
|
198
|
+
|
199
|
+
また、そもそもgunicornが起動していないのではと言う指摘についてですが、
|
200
|
+
|
201
|
+
```ここに言語を入力
|
202
|
+
|
203
|
+
gunicorn --bind 127.0.0.1:8000 QuantumGun.wsgi -D
|
204
|
+
|
205
|
+
```
|
206
|
+
|
207
|
+
を入力しているので、Gunicornは起動していると言う認識です。
|