• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved Nextcloud's nginx.conf on Plesk

Zoo3

Regular Pleskian
I have installed and used Nextcloud, but I have one unknown point.

Code:
upstream php-handler {
   server 127.0.0.1:9000;
   #server unix:/var/run/php/php7.0-fpm.sock;
}

I wrote this directly in nginx.conf. Is there a way to configure this in Plesk?

--
PHP7.3, Nginx 1.14.2
 
You can try to create file upstream.conf, for example in /etc/nginx/conf.d/ directory with this content. Thins config will be loaded by nginx and will not be affected by any Plesk/nginx update.
 
Thank you. Is it impossible to configure only with Plesk?
It is global nginx config. In Plesk you can configure nginx config on domain level as "Additional nginx directives" in Web settings of your subscription.
 
Gracias. ¿Es imposible configurar solo con Plesk?
Les dejo mi conf personalizado para nextcloud en plesk.
Lo hice como dice Igor, les dejo la ruta exacta en la GUI.

midominio.com
Haz clic en Hosting y DNS
Haga clic en Configuración de Apache y nginx
Si navega hasta el final de la página, encontrará:
Configuración de Apache y nginx y una caja vacía.

Mi configuración aquí:

ubicación ^~ /.bien conocido {
ubicación = /.bien conocido/carddav { return 301 /qbox/remote.php/dav/; }
ubicación = /.bien conocido/caldav { return 301 /qbox/remote.php/dav/; }
ubicación /.bien conocido/acme-challenge { try_files $uri $uri/ =404; }
ubicación /.bien conocido/pki-validación { try_files $uri $uri/ =404; }

devuelve 301 /qbox/index.php$request_uri;
}
 

Attachments

  • Directivas-adicionales.png
    Directivas-adicionales.png
    239.1 KB · Views: 2
I have installed and used Nextcloud, but I have one unknown point.

Code:
upstream php-handler {
   server 127.0.0.1:9000;
   #server unix:/var/run/php/php7.0-fpm.sock;
}

I wrote this directly in nginx.conf. Is there a way to configure this in Plesk?

--
PHP7.3, Nginx 1.14.2
Do you solved your problem?
Do you install Nextcloud manual or with Docker Compose?
 
Do you solved your problem?
Do you install Nextcloud manual or with Docker Compose?

I had forgotten what I used to write here. I have created a new topic. I'm able to run the software by writing directly in nginx.conf.
I wish there was a way to do it within Plesk instead of directly in nginx.
 
Back
Top