它是我的nginx配置文件
server {
listen 80;
server_name san.cashbaba.com.bd www.san.cashbaba.com.bd;
location / {
proxy_pass http://localhost: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;
}
}
现在可以完美运行了。我的要求是,如果有人在浏览器地址栏中写 san.cashbaba.com.bd/admin ,则打开另一个已存储在 / usr / share / nginx / html / adminApp 中的应用程序>文件夹。
任何人都可以帮助我如何在此配置文件中写入此配置