• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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