How to configure Nginx domain name rewriting and pan-domain name resolution

WBOY
Release: 2023-05-12 12:37:06
forward
2386 people have browsed it

具体代码如下:

#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;
 
 #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 on;
 
 #设置允许发布内容为8m
 client_max_body_size 20m;
 client_body_buffer_size 512k;
 
 add_header access-control-allow-origin *; 
 add_header access-control-allow-headers x-requested-with; 
 add_header access-control-allow-methods get,post,options; 
 
 server { 
 listen  80; 
 server_name www.xxx.com; 
 location / { 
 proxy_pass http://127.0.0.1:8080; 
 proxy_set_header host $host; 
 proxy_set_header x-real-ip $remote_addr; 
 proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; 
 } 
 }
 
 server { 
 listen  80; 
 server_name www.aaa.com; 
 location / { 
 proxy_pass http://127.0.0.1:9989; 
 proxy_set_header host $host; 
 proxy_set_header x-real-ip $remote_addr; 
 proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; 
 } 
 }
 
 
 #泛域名解析
 server { 
 listen  80; 
 server_name *.web.yuyuyun.cn; 
 location / { 
 # 泛域名开始配置
 if ( $host ~* (.*)\.(.*)\.(.*)\.(.*) ) {
 set $domain $1; #获取当前的 域名前缀
 }
 proxy_pass http://127.0.0.1:1119/$domain/; 
 proxy_set_header host $host; 
 proxy_set_header x-real-ip $remote_addr; 
 proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; 
 } 
 
 } 
 
}
Copy after login

The above is the detailed content of How to configure Nginx domain name rewriting and pan-domain name resolution. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template