nginx Server Block(Virtual Host) - Windows
페이지 정보
작성자 상석하대 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 에필로그 댓글 0건 조회 1,998회 작성일 22-06-28 16:03본문
서버에서 nginx 설치 폴더와 사이트의 웹루트 폴더를 다음과 같다고 가정한다.
-. C:\nginx-1.22.0\conf\nginx.conf 파일
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
include "C:/nginx-1.22.0/conf/sites-enabled/*.conf";
}
-. C:\nginx-1.22.0\conf\sites-enabled\example.com.conf 파일 *example.com 사이트
server {
listen 80;
server_name example.com;
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
-. C:\nginx-1.22.0\conf\sites-enabled\example2.com.conf 파일 *example2.com 사이트
server {
listen 80;
server_name example2.com;
location / {
root html2;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html2;
}
}
-. C:\nginx-1.22.0\conf\sites-enabled\example3.com.conf 파일 *example3.com 사이트
server {
listen 80;
server_name example3.com;
location / {
root html3;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html3;
}
}
댓글목록
등록된 댓글이 없습니다.