Nginx 가상 도 메 인 이름 설정

1192 단어 Nginx
추가 할. conf 파일 추가 /usr/local/etc/nginx/servers/ 경로
//xxx.conf
server {

        listen         80;
        server_name    laravel.cc;
        set  $htdocs   /Users/xxx/xxx;

        location / {
            root $htdocs;
            index  index.php index.html;
            try_files $uri $uri/ /index.php?$query_string;
        }

        location ~ \.php(.*)$ {
            include fastcgi_params;
            fastcgi_param  SCRIPT_FILENAME  $htdocs$fastcgi_script_name;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
        }
}

다시 들 어가 기 /etc/hosts 추가 127.0.0.1 laravel.cc 저장 재 부팅 nginx 하면 됩 니 다.

좋은 웹페이지 즐겨찾기