Nginx 첫날
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location /a {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
6. Nginx 는 정적 분 리 를 설정 하여 정적 자원 을 html 폴 더 에 넣 고 중복 서버 는 7. Nginx 역방향 프 록 시 1. Hosts 파일 을 수정 하여 외부 주소 127.0.0.1 www. wdksoft. com 2. nginx 역방향 프 록 시 를 설정 하고 nginx. conf 를 수정 합 니 다.사고방식 은 다음 과 같다. 클 라 이언 트 가 www. wdkst. com 을 내부 에서 자원 전송 을 요청 하 는 것 을 감청 했다.
server {
listen 80; 80
server_name www.wdksoft.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://localhost:8080/;
index index.html index.htm;
}
}
8. Nginx 클 러 스 터 부하 균형 은 기본적으로 윤 훈 체 제 를 사용 하고 설정 방식 은 다음 과 같다.
upstream backserver { server localhost:8080; server localhost:8081; }
server {
listen 80;
server_name www.wdksoft.com;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://backserver;
index index.jsp index.htm;
}
}
가중치 비례 설정
upstream backserver {
server localhost:8080 weight=2;
server localhost:8081 weight=1;
}
IP 고정 바 인 딩, 바 인 딩 된 서버 에 만 접근 가능
upstream backserver {
ip_hash;
server localhost:8080;
server localhost:8081;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.