ubuntu 에 nginx 를 설치 하고 웹 서버 와 결합 하여 8000 포트 를 80 포트 로 전송 합 니 다.

3986 단어
1. 소프트웨어 소스 중점 업데이트, 그렇지 않 으 면 설치 실패
sudo apt-get update

2. nginx 설치
sudo apt-get install nginx

설 치 된 파일 위치:
/ usr / sbin / nginx: 주 프로그램 / etc / nginx: 설정 파일 저장 / usr / share / nginx: 정적 파일 저장 / var / log / nginx: 로그 저장
3. nginx 설정 수정
vi /etc/nginx/sites-enabled/default

주의 하 세 요. / etc / nginx / nginx. conf 를 수정 하 는 것 은 효과 가 없습니다. 여기 서 구체 적 으로 설정 하 는 것 이 무엇 인지 모 르 겠 습 니 다. 들 어간 후에 포트 와 기본 정적 폴 더 를 수정 하면 포트 를 80 에서 8000 으로 바 꾸 겠 습 니 다.기본 정적 폴 더 는 / var / www / html 에서 / usr / share / nginx / html 로 변경 합 니 다.
listen 8000 default_server;
root /usr/share/nginx/html;
#         web、atom-host      80  
location /web {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        proxy_pass http://127.0.0.1;
}
location /atom-host {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        proxy_pass http://127.0.0.1;
}

4. nginx 서비스 재 개
/etc/init.d/nginx reload
sudo /etc/init.d/nginx restart

상용 명령 을 붙이다
vi /var/log/nginx/error.log +  //              
/etc/init.d/nginx reload   ngnix  
netstat -ntulp | grep 80   80      

좋은 웹페이지 즐겨찾기