介绍
使用Nginx不难,但是如果你刚开始接触,需要花点时间才能理解Nginx到底是个什么意思,而相应的反向代理又是什么意思?
知乎上看到一个图,简单明了
使用方法(ubuntu环境)
安装
$ apt-get install nginx-
主要配置文件
安装后 目录在/etc/nginx
一般只需修改/etc/nginx/sites-available/default文件 就行了
日志文件在 /var/log/nginx 配置及使用
不使用nginx的时候 假设有两个程序,地址分别为
http://127.0.0.1:8080
http://127.0.0.1:8082
server {
listen 80;
server_name a.com;
charset utf-8;
access_log /home/a.com.access.log;
location /(css|js|img)/ {
access_log off;
expires 1d;
root “/home/rick/static";
try_files $uri @backend;
}
location / {
try_files /_not_exists_ @backend;
}
location @backend {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:8080;
}
}
server {
listen 80;
server_name b.com;
charset utf-8;
access_log /home/a.com.access.log;
location /(css|js|img)/ {
access_log off;
expires 1d;
root “/home/rick/static";
try_files $uri @backend;
}
location / {
try_files /_not_exists_ @backend;
}
location @backend {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:8082;
}
}
- 启动
$ service nginx start //reload restart stop
设置完后,访问a.com 和b.com 就分别访问了8080 和8081