nginx 여러 호스트 만 드 는 방법

먼저 nginx 의 주 프로필 을 변경 합 니 다. / usr / local / nginx / conf / nginx. conf 추가:
user nobody nobody;
worker_processes 2;
error_log /usr/local/nginx/logs/nginx_error.log error;
pid /usr/local/nginx/logs/nginx.pid;
worker_rlimit_nofile 51200;
events
{
    use epoll;
    worker_connections 6000;
}
http
{
    include mime.types;
    default_type application/octet-stream;
    server_names_hash_bucket_size 3526;
    server_names_hash_max_size 4096;
    log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]'
    '$host "$request_uri" $status'
    '"$http_referer" "$http_user_agent"';
    sendfile on;
    tcp_nopush on;
    keepalive_timeout 30;
    client_header_timeout 3m;
    client_body_timeout 3m;
    send_timeout 3m;
    connection_pool_size 256;
    client_header_buffer_size 1k;
    large_client_header_buffers 8 4k;
    request_pool_size 4k;
    output_buffers 4 32k;
    postpone_output 1460;
    client_max_body_size 10m;
    client_body_buffer_size 256k;
    client_body_temp_path /usr/local/nginx/client_body_temp;
    proxy_temp_path /usr/local/nginx/proxy_temp;
    fastcgi_temp_path /usr/local/nginx/fastcgi_temp;
    fastcgi_intercept_errors on;
    tcp_nodelay on;
    gzip on;
    gzip_min_length 1k;
    gzip_buffers 4 8k;
    gzip_comp_level 5;
    gzip_http_version 1.1;
    gzip_types text/plain application/x-javascript text/css text/htm application/xml;
    include vhosts/*.conf;
    }

                            ##vhosts 디 렉 터 리 에 있 는 모든. conf 파일 을 포함 합 니 다. 이것 은 반드시 써 야 합 니 다.
이렇게 하면 우 리 는 / usr / local / nginx / conf / vhosts 디 렉 터 리 에서 가상 호스트 설정 파일 을 만 들 수 있 습 니 다.mkdir  /usr/local/nginx/conf/vhosts
그리고 가상 호스트 설정 파일 을 만 듭 니 다. 예 를 들 어 1. conf 와 2. conf 는 두 개의 서로 다른 도 메 인 이름과 사 이 트 를 대표 합 니 다.
1. conf 에 쓰기:
server 
{
    listen 80 default_server;  ##    
    server_name www.hu.com;   ##  
    index index.html index.htm index.php;
    root /usr/local/nginx/html;   ##      
    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_pass unix:/tmp/php-fcgi.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
    }
}

2. conf 쓰기:
server 
{
    listen 80;
    server_name www.123.com;   ##    
    index index.html index.htm index.php;
    root /data/www2;  ##    
    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_pass unix:/tmp/php-fcgi.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /data/www2$fastcgi_script_name;
    }
}

마지막 으로 nginx 서 비 스 를 다시 시작 하면 우리 두 도 메 인 이름 의 추가 가 완 료 됩 니 다!

좋은 웹페이지 즐겨찾기