-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
02장: 운영 서버 환경의 구성 #2
Comments
서버 구성 환경
특이사항
# /etc/nginx/nginx.conf 에서 server 블록 안에 "/" 경로 이하 요청에 대한 리버스 프록시 설정 추가
location / {
proxy_pass http://localhost:8080;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
# java, nginx 설치 커맨드
sudo amazon-linux-extras install nginx1
sudo amazon-linux-extras install java-openjdk11 기타 (알게된것)
# 친숙해지자
sudo service nginx restart
sudo service nginx start
sudo service nginx stop
|
[질문]
[해보고 싶은거]
|
|
이슈
생각
|
알게된 것
devel 패키지가 무엇일까? nginx에 설정하는 헤더 nginx에서 제공하는 변수 |
Amazon Linux의 기반인 Redhat에서는 nginx 기본 설치시 sites-available이나 sites-enabled 디렉토리를 가지지 않는다고 합니다. |
Nginx header 알아보기nginx에서 사용하는 변수와 속성들을 알고 사용하고 싶어서 좀 더 찾아봤습니다 :) 찾다보니 좀 깊게 팠네요ㅎㅎ location / {
proxy_pass http://localhost:8080;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
} 변수들
proxy_set_header 속성
헤더에 왜
|
No description provided.
The text was updated successfully, but these errors were encountered: