去nginx官网下载相应的版本
다운로드 주소: http://nginx.org/download/nginx-1.6.2.zip
다운로드 후 압축을 풀고 원하는 원본 디렉터리에 넣으세요. F:nginx에 넣으세요
Windows cmd 창에 들어가 아래와 같이 명령을 입력하세요.
C:\Users\YiXian>F: F:\>cd nginx start nginx.exe
성공적으로 시작되면 nginx.exe 프로세스가 완료된 것을 확인할 수 있습니다.
다음으로 브라우저에 127.0.0.1을 입력하고 Enter를 누르면
nginx에 오신 것을 환영합니다!
끄는 것을 잊지 마세요. 여기서는 Windows IIS 서버를 잃어버리게 됩니다.nginx 해당 명령
nginx.exe -s stop //停止nginx nginx.exe -s reload //重新加载nginx nginx.exe -s quit //退出nginx
nginx 관련 구성은 물론 conf/nginx.conf에 있습니다
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; #nginx日志格式定义,在下面可以进行引用 #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 logs/access.log main; #日志路径 sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65;#请求时间 #gzip on;开启gzip压缩 #server为设置的虚拟机,可以设多个 server { listen 80;#监听的端口 server_name localhost;#监听的域名 #charset koi8-r; #access_log logs/host.access.log main;#该虚拟机日志存放的位置 location / { root html; index 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 html; } # 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$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # #server { # listen 443; # server_name localhost; # ssl on; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_timeout 5m; # ssl_protocols SSLv2 SSLv3 TLSv1; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} }
위 내용은 관련 내용을 포함하여 Windows에서의 nginx 설치 및 구성을 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.