DirectAdmin Apache/Nginx リバースプロキシカスタムサブドメイン設定

DirectAdmin Apache/Nginx リバースプロキシカスタムサブドメイン設定

サブドメインに特定のアプリケーションがあり、動作させるにはカスタム Nginx 構成が必要です。ドメインごとにカスタマイズするために DirectAdmin コントロール パネルを使用しています。ただし、動作させるために必要な構成と形式がわからなくなっています。セットアップは、Apache サーバーと Nginx リバース プロキシです。

これをカスタマイズして 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;
        }
}```

関連情報