0
点赞
收藏
分享

微信扫一扫

修改hosts文件模拟域名解析,Nginx反向代理实现二级域名转发

修改hosts文件模拟域名解析,Nginx反向代理实现二级域名转发_运维

修改hosts文件模拟域名解析,Nginx反向代理实现二级域名转发_运维_02nginx.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 localhost;

#配置根目录
location / {
proxy_pass http://127.0.0.1:81;
}
}


server {
listen 80;
server_name www.xutongbao.top;

#配置根目录
location / {
proxy_pass http://127.0.0.1:82;
}
}

server {
listen 80;
server_name ice.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 80;
server_name nginx.xutongbao.top;

#配置根目录
location / {
proxy_pass http://127.0.0.1:83;
}
}

server {
listen 83;
server_name nginx;

#配置根目录
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;
# }
#}

}

修改hosts文件模拟域名解析,Nginx反向代理实现二级域名转发_运维_03

修改hosts文件模拟域名解析,Nginx反向代理实现二级域名转发_html_04

修改hosts文件模拟域名解析,Nginx反向代理实现二级域名转发_根目录_05


举报

相关推荐

0 条评论