kb: how-to
Plesk for Linux
Applicable to:
- Plesk for Linux
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:
CONFIG_TEXT: 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;
}
Comments
0 comments
Please sign in to leave a comment.