• 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.
  • 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.
  • The ImunifyAV extension is now deprecated and no longer available for installation.
    Existing ImunifyAV installations will continue operating for three months, and after that will automatically be replaced with the new Imunify extension. We recommend that you manually replace any existing ImunifyAV installations with Imunify at your earliest convenience.

Question Making a reverse proxy to a domain hosted in Plesk or cpanel with nginx

davibigi

New Pleskian
As you can see from the title, I want to create a structure like the one in the image, but I could not achieve this by reverse proxying a normal domain. What should I do?
Image attached....

idea or solution on how to do it

server {
listen 80;

location / {
proxy_pass http://xxx; # Backend IP
proxy_ssl_verify off;
proxy_set_header Host xxx.com; # Backend domain bilgisi
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
I used this configuration
 

Attachments

  • XIkF7TFc.png
    XIkF7TFc.png
    8.8 KB · Views: 4
Back
Top