vps – ​​Wie konfiguriere ich NginX für mehrere Site-Anwendungen unter einem Domänennamen?
为情所困
为情所困 2017-05-16 17:20:47
0
2
569

Gefällt mir so
www.example.com
blog.example.com
Aber verschiedene Anwendungen, zum Beispiel ist www.example.com eine statische Seite und blog.example.com ist eine NodeJS-Anwendung
Kann das gemacht werden? Wie konfiguriere ich es konkret?

为情所困
为情所困

Antworte allen(2)
洪涛

静态页面配置root,应用配置反向代理即可

server {
    listen      80;
    server_name blog.example.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;
        proxy_redirect off;
    }
}

server {
    listen      80;
    server_name www.example.com;
    
    location  / {
        root E:/Example/public;        
     }
}
PHPzhong

配置虚拟主机咯
贴一下伪代码供参考吧

配置文件 nginx.conf 的 server段最后处添加

include vhost/*.conf;

创建vhost目录
vhost目录下创建文件 比如 www.example.com.conf,blog.example.com.conf
然后做大致如下配置

server
{
    listen 80;
    server_name www.example.com;
    index index.php index.html index.htm ;
    root /var/www/www.example.com;
    
    if ( $fastcgi_script_name ~ \..*\/.*php ) {
        return 403;
    }
    
    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

当然,nodejs不依赖ng,ng指定nodejs应用文件夹,域名访问只触发初始化,其他的通讯跟解释交回给node服务

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage