Nginx配置多端⼝多域名访问的实现
在⼀个服务器上部署多个站点,需要开放多个端⼝来访问不同的站点,流程很简单,调试花了2⼩时,记录⼀下:主域名多端⼝访问
在DNS NameServer设置A记录
将指向服务器ip
开放所需端⼝,修改nginx配置⽂件
⽐如我们有两个服务分别开放在80端⼝和8080端⼝
如果有iptable,先开放端⼝:
iptables -A INPUT -ptcp --dport 80 -j ACCEPT
iptables -A INPUT -ptcp --dport 8080 -j ACCEPT
修改配置⽂件:
#path: /usr/local/nginx/f
server {
listen 80;
nginx 配置文件server_;
access_log /data/www/log/33.33.33.33_nginx.log combined;
index index.html index.htm index.php;
include /usr/local/nginx/conf/f;
root /data/www/website/33.33.33.33:80;
location ~ [^/]\.php(/|$) {
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
f;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
expires 30d;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires 7d;
access_log off;
}
}
server {
listen 8080;
server_;
access_log /data/www/log/33.33.33.33:8080_nginx.log combined;
index index.html index.htm index.php;
include /usr/local/nginx/conf/f;
root /data/www/website/33.33.33.33:8080;
location ~ [^/]\.php(/|$) {
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
f;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
expires 30d;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires 7d;
access_log off;
}
}
关键就是两个 server 段配置,你也可以把这两段拆成两个配置⽂件,放到
/etc/nginx/conf.d/
⽬录下⾯;
⼦域名多端⼝访问
⽽且如果有两个不同的cgi,⽐如80端⼝对应⼀个php web服务, 8080端⼝对应⼀个nodejs web服务;⽽我们的nodejs⾃带web服务,已经在8080端⼝监听了,这怎么办?
这个时候我们需要Nginx的反向代理功能,并在DNS Server上⾯增加⼀条A记录,最终实现
< 访问80端⼝
< 通过nginx转发访问8080端⼝服务
增加⼀条A记录
将 A.xxx 指向服务器ip
Nginx配置模板如下:
#path: /usr/local/nginx/f
server {
listen 80;
server_;
access_log /data/www/log/33.33.33.33_nginx.log combined;
index index.html index.htm index.php;
include /usr/local/nginx/conf/f;
root /data/www/website/33.33.33.33:80;
location ~ [^/]\.php(/|$) {
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
f;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
expires 30d;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires 7d;
access_log off;
}
}
server {
listen 80;
listen [::]:80;
server_name A.XXX;
proxy_connect_timeout 300s;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
fastcgi_send_timeout 300s;
fastcgi_read_timeout 300s;
location / {
proxy_pass 127.0.0.1:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
try_files $uri $uri/ =404;
}
}
nginx重新载⼊配置⽂件
nginx -s reload
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论