修改hosts文件模拟域名解析,Nginx反向代理实现二级域名转发
作者:互联网
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;
daemon on;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#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
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.1;
gzip_comp_level 9;
gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php application/javascript application/json;
gzip_disable "MSIE [1-6]\.";
gzip_vary on;
server {
listen 80;
server_name www.xutongbao.top;
#配置根目录
location / {
proxy_pass http://127.0.0.1:81;
}
}
server {
listen 80;
server_name jenkins.xutongbao.top;
#配置根目录
location / {
proxy_pass http://127.0.0.1:8080;
}
}
server {
listen 83;
server_name nginx.xutongbao.top;
#配置根目录
location / {
#root html;
root /temp;
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;
}
#首页重定向
location =/ {
rewrite ^(.*)$ http://$host:$server_port/test/air/origin/master/#/air/light/extra/home;
}
#日志重定向
location =/myLog.log {
rewrite ^(.*)$ http://$host:81/myLog.log;
}
}
# 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;
# }
#}
}
标签:index,http,log,二级域名,域名解析,server,Nginx,html,error 来源: https://blog.csdn.net/xutongbao/article/details/120987763