Notice
Recent Posts
Recent Comments
Tags
- 파일업로드 유효성체크
- 하드 마이그레이션
- javascript 유효성체크
- 하드 윈도우 복사
- 타임피커
- php 캐쉬제거
- 파일업로드 체크
- 404에러페이지
- 맥 오라클설치
- asp.net dropdownlist
- jquery 바코드
- 말줄임표시
- ViewBag
- XSS PHP
- Mac Oracle
- XSS방어
- SSD 복사
- TempData
- ASP.Net Core 404
- jquery 바코드생성
- javascript redirection
- 강제이동
- ViewData
- asp.net Select
- javascript 바코드스캔
- javascript 바코드 생성
- asp.net core Select
- 바코드 스캔하기
- django 엑셀불러오기
- 바코드 생성하기
웹개발자의 기지개
[Django] nginx: [emerg] open() "/etc/nginx/proxy_params" failed (2: No such file or directory) in /etc/nginx/sites-enabled 본문
python/Django
[Django] nginx: [emerg] open() "/etc/nginx/proxy_params" failed (2: No such file or directory) in /etc/nginx/sites-enabled
http://portfolio.wonpaper.net 2023. 11. 20. 09:54Centos7
Django
nginx
gunicorn
Django 와 nginx 웹서버와 연동하는 과정중에
nginx: [emerg] open() "/etc/nginx/proxy_params" failed (2: No such file or directory) in /etc/nginx/sites-enabled
와 같은 에러가 나면서 해당 proxy_params 설정 부분내용이 없다고 메세지가 나왔다.
1
2
3
4
5
6
7
8
9
|
(venv) [root@localhost alzssol_django]# sudo systemctl daemon-reload
(venv) [root@localhost alzssol_django]# sudo systemctl start gunicorn
(venv) [root@localhost alzssol_django]# sudo systemctl start nginx
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.
(venv) [root@localhost alzssol_django]# sudo nginx -t
nginx: [emerg] open() "/etc/nginx/proxy_params" failed (2: No such file or directory) in /etc/nginx/sites-enabled/alzssol_django:12
nginx: configuration file /etc/nginx/nginx.conf test failed
|
cs |
[ /etc/nginx/sites-enabled/test_home ] - 필자의 test_home 계정의 설정파일
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
server {
listen 80;
server_name xxx.xxx.xxx.xxx
location = /favicon.ico { access_log off; log_not_found off; }
location /static/ {
root /var/test_home;
}
location / {
#include proxy_params;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://unix:/var/test_home/run/gunicorn.sock;
}
}
|
cs |
14라인부터 17라인까지의 내용으로 추가하였다.
'python > Django' 카테고리의 다른 글
[Django] 최근글에 new 이미지 넣기 - Datetime, Cutom Template Filter 사용 (0) | 2023.11.15 |
---|---|
[Django] redirect 로 parameter 값을 넘기고 싶을때 (0) | 2023.11.13 |
[Django] SummerNote (써머노트) 에디터 적용하기 (0) | 2023.11.08 |
[Django] 삼항 연산자 정리 (1) | 2023.10.31 |
[Django] 다른 App 의 Model을 Import 할려고 할때 (0) | 2023.10.31 |
Comments