• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • 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.

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