[Nginx] nginx 가상 컴퓨터 설정

일반적인 상황 에서 우리 의 한 대의 기 계 는 하나의 항목 만 배치 하지 않 는 다. 그러면 이 럴 때 우 리 는 가상 기 계 를 설정 하여 여러 주 소 를 분석 해 야 한다.
현재 설 치 된 nginx 서버 가 있다 고 가정 하고 php-fpm 를 통 해 서 비 스 를 제공 합 니 다.
프로필 주소 찾기
때때로 우 리 는 프로필 이 어디 에 있 는 지 모 르 지만, 서로 다른 버 전의 Linux 발행 판 의 차이 가 매우 크다. 그러면 이 럴 때 프로필 의 위 치 를 찾 아야 한다.
[root@iZ28405a6nlZ ~]# whereis nginx
nginx: /usr/sbin/nginx /etc/nginx /usr/share/nginx

이렇게 해서 프로필 의 위 치 를 찾 았 습 니 다 /etc/nginx설정 파일
설정 폴 더 에 들 어가 면 conf.d 폴 더 가 있 습 니 다. 이 안에 있 는 프로필 은 재 부팅 할 때마다 불 러 옵 니 다. 이 안에 .conf 파일 을 만 듭 니 다. 예 를 들 어 www.localhost.com.conf다음은 제 가 쓴 예 입 니 다. 서버 마다 설정 이 다 릅 니 다. 함부로 가 져 와 서 사용 하지 마 세 요.

server {
    listen       80;
    server_name www.xxx.com;
    index index.html index.htm index.php;
    root  /usr/share/nginx/html/xxx;

    location / {  
        try_files $uri $uri/ /index.php?$args;  
        if (!-e $request_filename){  
        rewrite ^/(.*) /index.php last;  
        }  
        root   /usr/share/nginx/html/markweb;  
        index  index.php  index.html  index.htm;  
    }   

    location ~ \.php$ {
        root           /usr/share/nginx/html/xxx;
        include  fastcgi_params;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html/markweb$fastcgi_script_name;
       # include fastcgi_params;
    }

    log_format www.xxx.com '$remote_addr - $remote_user [$time_local] $request'
    '$status $body_bytes_sent $http_referer '
    '$http_user_agent $http_x_forwarded_for';
    access_log  /var/log/www.xxx.com.log www.xxx.com;
}

재 부팅 후 도 메 인 이름 분석 을 설정 하 시 면 됩 니 다.

좋은 웹페이지 즐겨찾기