宝塔用户_yijgee 发表于 2025-1-2 16:08:08

一个域名配置不同端口部署多个前端项目

同一个nginx,配置多个端口,不同的端口访问不同的前端项目文件夹,求怎么配置文件呢?能给个demo吗?江湖救急感谢!
这个是nginx简略配置文件,还能再往下加server监听不同端口吗?


server
{
    listen 80;
    listen 443 ssl http2;
    server_name www.cloud.com;
      
      
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/iems/iems-web;

    location / {
                        try_files $uri $uri/ /index.html;
    }
    access_log/www/wwwlogs/www.energies-cloud.com.log;
    error_log/www/wwwlogs/www.energies-cloud.com.error.log;
}


宝塔用户_llikoe 发表于 2025-1-7 14:50:50

可以根据不同端口来配置不同地址
页: [1]
查看完整版本: 一个域名配置不同端口部署多个前端项目