我在子網域上有一個特定的應用程序,需要自訂 Nginx 配置才能運作。我正在使用 DirectAdmin 控制面板進行每個網域的自訂。但是,我對配置及其工作所需的格式感到困惑。設定是帶有 Nginx 反向代理的 Apache 伺服器
任何關於如何自訂它並將其添加到 DirectAdmin 的建議將不勝感激。
配置
server_name yourdomain.com www.yourdomain.com;
root /path/to/your/website.com/;
index index.html index.php;
# set expiration of assets to MAX for caching
location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ {
expires max;
log_not_found off;
}
location / {
# Check if a file or directory index file exists, else route it to index.php.
try_files $uri $uri/ /index.php;
}
location /backups {
deny all;
return 404;
}
location ~* \.php$ {
fastcgi_pass 127.0.0.1:9000;
include fastcgi.conf;
}
}```