• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Question Custom nginx settings

SerjGAmoVeR

New Pleskian
Hi

I have a custom solution with two parts:
- Content with Wordpress
- Application with PHP framework

I wanna merge it under one domain with this logic:

- If page exists in application, show this page
- In other case, redirect request to Wordpress

Case:

location ^~ /blog/ {
proxy_pass http://wordpress_upstream;
}

upstream wordpress_upstream {
server blog; # IP or server address
}

Full config is here
wordpress_and_yii.nginx.conf · GitHub

Is it possible to impletement this solution with Plesk?
 
Back
Top