DirectAdmin Apache/Nginx Reverse Proxy Benutzerdefinierte Subdomain-Konfiguration

DirectAdmin Apache/Nginx Reverse Proxy Benutzerdefinierte Subdomain-Konfiguration

Ich habe eine bestimmte Anwendung auf einer Subdomäne, die eine benutzerdefinierte Nginx-Konfiguration benötigt, um zu funktionieren. Ich verwende das DirectAdmin-Kontrollfeld, um Anpassungen pro Domäne vorzunehmen. Ich bin jedoch verwirrt über die Konfiguration und das Format, in dem sie sein muss, damit sie funktioniert. Das Setup ist ein Apache-Server mit Nginx-Reverse-Proxy

Ich bin für jeden Ratschlag dankbar, wie ich dies anpassen und zu DirectAdmin hinzufügen kann.

Konfiguration

        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;
        }
}```

verwandte Informationen