우분투에서 nginx 서버를 구성하는 방법

王林
풀어 주다: 2023-05-15 09:04:05
앞으로
2216명이 탐색했습니다.

ubuntu에서의 nginx 서버 구성에 대한 자세한 설명

1.nginx 서버 설치

sudo apt-get install nginx

2.nginx 서버 시작

sudo /etc/init.d/nginx start

3. 도메인 이름은 다른 백엔드 서버에 해당합니다

/etc/nginx/sites-enabled/ 디렉터리에서 기본 구성 파일을 삭제합니다

도메인 이름에 해당하는 새 구성 파일을 만듭니다

예: test.youlunshidai. com

#通过upstream nodejs__upstream 可以配置多台nodejs节点,做负载均衡
upstream nodejs__upstream__test__youlunshidai {
 server 127.0.0.1:8089; #服务器地址和端口号
 #server 127.0.0.1:8088; #负载均衡服务器地址和端口号
 keepalive 64; #设置存活时间。如果不设置可能会产生大量的timewait
}
server {
 listen 80;
 server_name test.youlunshidai.com;
 access_log /var/log/nginx/test_youlunshidai.log; #nginx日志文件
 location / {
 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 x-nginx-proxy true;
 proxy_set_header connection "";
 proxy_http_version 1.1; 
 proxy_pass http://nodejs__upstream__test__youlunshidai; #反向代理转发 http://nodejs__upstream;
 }
}
로그인 후 복사

다른 도메인 이름 및 백엔드 서버가 있는 경우 디렉터리에 해당 도메인 이름 구성 파일을 계속 생성하세요

우분투에서 nginx 서버를 구성하는 방법

위 내용은 우분투에서 nginx 서버를 구성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:yisu.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿