• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • 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.

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