DirectAdmin Apache/Nginx 反向代理自定义子域名配置

DirectAdmin Apache/Nginx 反向代理自定义子域名配置

我在子域上有一个特定的应用程序,需要自定义 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;
        }
}```

相关内容