下載地點:http://nginx.org/download/nginx-1.2.4.zip
下載后直接解壓到你的硬盤上,我的是d:
ginx
啟動nginx
cd d:
cd nginx-1.2.4
start nginx
查察任務任務打點器內里會有nginx的歷程
在欣賞器輸入http://127.0.0.1 此時會呈現nginx的接待界面,說明啟動nginx樂成。
Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required.
For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.
Thank you for using nginx.
其他操縱:
nginx -s stop // 遏制nginx
nginx -s reload // 從頭加載設置文件
nginx -s quit // 退出nginx
設置文件:
#user nobody;
worker_processes 1;#啟動的線程數:一本內核的數目*2
#錯誤的位置和級別
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;#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;
# }
#}
}
小提示:
運行nginx -V可以查察該平臺編譯版支持哪些模塊。我這里的功效為: