nginx 基础
简介
nginx
是一个高性能的反向代理服务器。
代理是在服务器和客户端之间假设的一层服务器,代理将接受客户端的请求并将它转发给服务器,然后将服务端的响应转发给客户端。
正向代理是一个位于客户端和原始服务器之间的服务器,为了从原始服务器取得内容,客户端向代理发送一个请求并指定目标(原始服务器),然后代理向原始服务器转交请求并将获得的内容返回给客户端;正向代理是为客户端服务的,客户端可以根据正向代理访问到它本身无法访问到的服务器资源;正向代理对客户端是透明的,对服务端是非透明的,服务端并不知道自己收到的是来自代理的访问还是来自真实客户端的访问。
反向代理是以代理服务器来接收客户端的请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给客户端;反向代理是为服务端服务的,可以帮助服务器接收客户端的请求,帮助服务器做请求转发,负载均衡等;反向代理对服务端是透明的,对客户端是非透明的,客户端并不知道自己访问的是代理服务器,服务器知道反向代理在为他服务。
配置
配置文件结构:
nginx.conf #nginx的全局配置,对全局生效
|--events: #配置影响nginx服务器或与用户的网络连接
|--http: #可以嵌套多个server,配置代理,缓存,日志定义等绝大多书功能和第三方模块的配置
|--upstream: #配置后端服务器的具体地址,负载均衡配置不可或缺的部分
|--server: #虚拟主机的相关参数,一个http中可以有多个server
|--server:
|--location: #配置请求的路由,以及各种页面的处理情况
|--location
配置文件示例:
#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;
# 日志格式,定义别名为 main
#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 系统传输文件
sendfile on;
#tcp_nopush on;
# 客户端与服务器连接超时时间,超时自动断开
#keepalive_timeout 0;
keepalive_timeout 65;
# 开启gizip 压缩
#gzip on;
# 虚拟主机
server {
# 端口
listen 80;
# 匹配请求中的host值
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
# 路由
# 监听请求路径
location / {
# 查找目录
root html;
# 默认查找
index index.html index.htm;
}
location ^~ /docs/ {
proxy_pass http://localhost:8081;
}
#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 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
Linux 操作 nginx
安装:
yum install nginx
nginx
的配置文件在 /etc/nginx/nginx.conf
自定义的配置文件放在 /etc/nginx/conf.d
项目文件存放在 /usr/share/nginx/html/
日志文件存放在 /var/log/nginx/
重启:
在 nginx 可执行文件下使用 /usr/sbin/nginx -s reload
命令,/usr/sbin/nginx
是可执行文件的地址。