• 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.

Issue nginx redirect from domain to a url (url.com -> url.com/page)

mudassarkhan

Basic Pleskian
Server operating system version
Ubuntu 22
Plesk version and microupdate number
obsidian 18.0.54
Hi all.

I have seen the nginx redirect guides but they focus on /page to another domain:
location /something {
rewrite ^/something(.*)$ Example Domain redirect;
}
However, I have a node app on app.domain.com but there is an issue with the app. app.domain.com shows an error:

Error ID:​

59602271

Details:​

Web application could not be started by the Phusion Passenger(R) application server.

Please read the Passenger log file (search for the Error ID) to find the details of the error.

You can also get a detailed report to appear directly on this page, but for security reasons it is only provided if Phusion Passenger(R) is run with environment set to development and/or with the friendly error pages option set to on.

For more information about configuring environment and friendly error pages, see:


but the app is running on app.domain.com/admin
and to be honest, I cannot be bothered to try and fix it, because I think it is WAY out of my league.

Is it possible to just redirect app.domain.com to app.domain.com/admin?
 
Also, a side note. I deployed this app on an ubuntu server WITHOUT plesk, i followed all of the same steps (composer, node etc) and on that server the app is working correctly. the url app.domain.com takes you to domain.com/admin
 
You could try the nginx directive. I haven't tested this, so use with caution.

Code:
location ~ ^/$ {
    return 301 https://app.domain.com/admin;
}
 
Back
Top