Question
How to serve the content of a different website in Plesk for Linux?
Answer
- Navigate to Domains > example.com > Hosting & DNS > Apache & Nginx Settings
- Add the following additional nginx directives:
location ~ ^/(?!.well-known).*$ {
proxy_pass https://example.org;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}