nginx设置为angularjs和php5休息

时间:2013-07-30 19:22:49

标签: angularjs nginx

我正在尝试运行angularjs应用程序以及php应用程序。 我制作了2个文件夹(client& api),我将所有的角度应用程序文件上传到客户端,将我所有的php rest api上传到“api”目录。

我加入了nginx:

location / {
      try_files $uri /client/index.html;
}
location /api/ {
      try_files $uri $uri/ /api/index.php$args;
}
location /static {
      alias /var/www/www.sitename.com/htdocs/client/static/;
}

我想知道是否有一种更优雅的方式来完成这项工作,因为现在如果我想在“location /”中添加一个例外,我需要再次修改nginx。

请告知。

0 个答案:

没有答案