nginx的配置段比apache简单。好的服务器都有4块CPU,每块CPU是8核,最多有32个核工作。比如我的是4核PC,所以把worker_processes设置为4,再多意义也不大。后面还要讲nginx的优化,只改worker_connections意义不大,还需要和系统的一些参数配合才行。
4块CPU,每块CPU8核,有32个processes,每个process1024个connections,共三万多connections,一台服务器轻松搞下来.
C:\Windows\System32\drivers\etc\hosts
chrome://net-internals/#dns #chrome缓存
[root@tiejiang nginx]# cat
/usr/local/nginx/var/www/html/index.html
nginx 匹配优先是:网站路径,并且不带正则表达式的优先。
<html>
wecome to z.com:8080 admin panel
</html>
[root@tiejiang nginx]# vim conf/nginx.conf #server {
listen 8080; #用的是8080的端口来访问
server_name 192.168.0.11; #访问的地址
location / { #根目录下
root /var/www/html/; #网页程序的绝对路径
index index.html; #默认网站
}
}
[root@tiejiang nginx]# ./sbin/nginx -s reload
./sbin/nginx -s reload==kill -HUP `cat logs/nginx.pid` 重读配置文件不用真正重启(软重启)
./sbin/nginx -s reopen==kill -USR1 `cat logs/nginx.pid` 重读日志文件,完全相当于使用信号量USR1