ubuntu 14.04 lnmp nginx 가상 호스트 (다 중 사이트 다 중 도 메 인 이름) 설정

3472 단어 nginxubuntulinux
우선 ubuntu 14.04 lnmp (nginx 1.9 + phop 7.0 + my sql 5.7) 를 참조 하여 ubuntu 아래 의 lnmp 환경 을 구축 하 십시오. 이러한 준비 작업 이 모두 끝 난 후에 우 리 는 다 중 도 메 인 이름 을 설정 하기 시 작 했 습 니 다. 본 고 는 주로 Yii 2 를 바탕 으로 설정 합 니 다.
nginx 프로필 수정
#user    www-data    www-data
user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
        worker_connections 768;
        # multi_accept on;
}

http {

        ##
        # Basic Settings
        ##

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;
        # server_tokens off;

        # server_names_hash_bucket_size 64;
        # server_name_in_redirect off;

        include /etc/nginx/mime.types;
        default_type application/octet-stream;

        ##
        # SSL Settings
        ##

        ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
        ssl_prefer_server_ciphers on;

        ##
        # Logging Settings
        ##

        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        ##
        # Gzip Settings
        ##

        gzip on;
        gzip_disable "msie6";

        # gzip_vary on;
        # gzip_proxied any;
        # gzip_comp_level 6;
        # gzip_buffers 16 8k;
        # gzip_http_version 1.1;
        # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

        ##
        # Virtual Host Configs
        ##

        include /etc/nginx/conf.d/*.conf;
        #         ,                  
        include /etc/nginx/sites-enabled/*;
}

                               

위 와 같이 수정 한 후에 우리 의 프로필 은 /etc/nginx/sites-enabled/ 아래 에 있 습 니 다.nginx 기본 사이트 루트 디 렉 터 리 /usr/share/nginx/html 가 있 기 때문에 우 리 는 새 폴 더 를 만 들 고 그 에 게 권한 을 주 고 다음 명령 을 실행 해 야 합 니 다.
cd /var/www

존재 하지 않 으 면 다음 명령 을 사용 하 십시오:
sudo mkdir -p /var/www

가상 호스트 설정 은 다음 과 같 습 니 다.
server {
        listen 80 default_server; //                 
        charset utf-8;
        client_max_body_size 128M;

        index index.php index.html index.htm;

        server_name    localhost;   #    www.xxx.com
        root            /www               #           

        location / {
                try_files $uri $uri/ /index.php?$args;
        }

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        location ~ \.php$ {
                include fastcgi_params;
                fastcgi_pass unix:/var/run/php5-fpm.sock;
        }

        location ~ /\.(ht|svn|git) {
                deny all;
        }

}

시작 nginx
sudo nginx -s reload

시작 에 성공 하지 못 하면 다음 명령 으로 문 제 를 검사 합 니 다.
sudo nginx -t

알림 에 따라 디 버 깅 을 해결 합 니 다.아직 안 되면 검사 / etc / nginx / fastcgiparams, 아래 상세 한 설명.
fastcgi 검사params 파일
  • sudo vim /etc/nginx/fastcgi_params
  • 다음 코드 가 있 는 지 확인 합 니 다.
  • fastcgi_param  PATH_INFO                 $fastcgi_script_name;
    fastcgi_param  SCRIPT_FILENAME        $document_root$fastcgi_script_name;

    없 으 면 더.
    제시 하 다.
    fastcgi_pass 127.0.0.1:9000; #        ,    /etc/php5/fpm/pool.d    
    listen = 127.0.0.1:9000
              
    ; listen = /var/run/php5-fpm.sock             fastcgi_pass unix:/var/run/php5-fpm.sock;

    좋은 웹페이지 즐겨찾기