>  기사  >  백엔드 개발  >  nginx 다운로드, Windows 시스템 설치, 시작 페이지 설정

nginx 다운로드, Windows 시스템 설치, 시작 페이지 설정

WBOY
WBOY원래의
2016-07-28 08:28:501129검색

다운로드 주소

http://nginx.org/en/download.html

공식적으로 최신 안정 버전인 nginx-1.10.1 버전을 다운로드 받았습니다.

폴더에 압축을 푼 후 D 드라이브 디렉터리에 압축을 풀고 폴더 이름을 nginx로 변경했습니다

 nginx下载、windows系统安装、设置欢迎页

nginx.exe를 두 번 클릭하여 시작

locahost 방문

 nginx下载、windows系统安装、设置欢迎页

이 페이지는 기본 페이지이며 특정 필요에 따라 수정될 수 있습니다. ;

1. 기본 웹페이지 콘텐츠 수정 - nginx/html/index.html

2. .conf, 루트 뒤에 있는 html은 변경될 수 있습니다. "d:/ershuai;"와 같이 자신의 웹 페이지에 대한 경로를 저장하세요. index 뒤의 내용은

(기본 구성은 html 경로 아래 index.html이며, index.html이 없으면 index.htm으로 이동)

 nginx下载、windows系统安装、设置欢迎页

관련 명령

1. 시작:

C:servernginx-1.0.2>start nginx
또는
C:servernginx-1.0.2> nginx.exe
참고: 첫 번째를 사용하는 것이 좋습니다. 두 번째는 cmd 창이 항상 실행되고 다른 명령 작업을 수행할 수 없게 됩니다.
2. 중지:
C:servernginx-1.0.2>nginx.exe -s stop
또는
C:servernginx-1.0.2>nginx.exe -s quit
중지는 nginx를 빠르게 중지하고 관련 정보를 저장하지 않을 수 있습니다. 종료는 nginx를 완전하고 순서대로 중지하고 관련 정보를 저장하는 것입니다.
3. Nginx 다시 로드:
C:servernginx-1.0.2>nginx.exe -s reload
구성 정보가 수정되어 이러한 구성을 다시 로드해야 하는 경우 이 명령을 사용하세요.
4. 로그 파일을 다시 엽니다:
C:servernginx-1.0.2>nginx.exe -s 다시 열기
5. Nginx 버전 확인:
C:servernginx-1.0.2>nginx - v
nginx: nginx 버전: nginx/1.0.2
또는
C:servernginx-1.0.2>nginx -V
nginx: nginx 버전: nginx/1.0.2
nginx: TLS SNI 지원 활성화
nginx: 인수 구성: --builddir=objs.msvc8 --crossbuild=win32 --with-debug --prefix= --conf-path=conf/nginx.conf --pid-path= 로그 /nginx.pid --http-log-path=logs/access.log --error-log-path=logs/error.log --sbin-path=nginx.exe --http-client-body-temp- 경로 =temp/client_body_temp --http-proxy-temp-path=temp/proxy_temp --http-fastcgi-temp-path=temp/fastcgi_temp --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs.msvc8/lib/ pcre-7.9 --with-zlib=objs.msvc8/lib/zlib-1.2.3 --with-select_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_stub_status_module --with-http_flv_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-mail --with-ipv6 --with-openssl =objs.msvc8/lib/openssl-0.9.8r --with-openssl-opt=enable-tlsext --with-http_ssl_module --with-mail_ssl_module
참고: v는 단순히 버전 정보를 표시하며, V는 버전 정보뿐만 아니라 구성 매개변수 정보도 표시합니다.
6. 지정된 구성 파일을 테스트하거나 로드합니다.
테스트 구성 파일
C:servernginx-1.0.2>nginx.exe -t -c conf/default.conf
nginx: 구성 파일 C:servernginx-1.0.2/conf/default.conf 구문 isok
nginx: 구성 파일 C:servernginx-1.0.2/conf/default.conf 테스트 성공
지정된 구성 파일 로드
C :servernginx-1.0.2>nginx.exe 시작 -c conf/default.conf

위에서는 nginx 다운로드, 윈도우 시스템 설치, 웰컴 페이지 설정 등의 내용을 소개했는데, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.