Nginx 다 중 사이트 vhost 설정 방법
1. / var / www / 아래 에 두 개의 디 렉 터 리 를 새로 만 듭 니 다.
/var/www/ushark.net
/var/www/ushark.wang
2. 편집 / etc / nginx / nginx. conf
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf; # ,
}
3. / etc / nginx / conf. d 에서 두 개의 conf 파일 을 새로 만 듭 니 다.
/etc/nginx/conf.d/ushark.net.conf
/etc/nginx/conf.d/ushark.wang.conf
4. 다음 설정 정 보 를 두 파일 에 복사 합 니 다. 빨간색 부분 만 수정 하면 됩 니 다!!server_name 와 루트 가 일치 하면 디 렉 터 리 와 도 메 인 이름 이 일일이 대응 합 니 다!!
server {
listen 80;
server_name www.ushark.net;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
root /var/www/ushark.net/;
if (!-e $request_filename){ # rewrite
rewrite ^/(.*) /index.php last;
}
location / {
index index.php index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/ushark.net/;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~* \.php$ {
fastcgi_index index.php;
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
5. Nginx 재 부팅
systemctl restart nginx
6, 편집 / etc / hosts!!!핵심 절차!!!
[root@bogon ~]# vi 127.0.0.1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
127.0.0.1 www.ushark.net
127.0.0.1 www.ushark.wang
총결산
위 에서 말 한 것 은 소 편 이 여러분 에 게 소개 한 Nginx 가 다 중 사이트 vhost 를 설정 하 는 방법 입 니 다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다. 궁금 한 점 이 있 으 시 면 저 에 게 메 시 지 를 남 겨 주세요. 소 편 은 제때에 답 해 드 리 겠 습 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.