I installed both Nginx ( port 80 ) and Apache ( port 8080 ). But for some domains, i just want to use Apache ( port 8080). Of course, i can not change Apache to port 80, How make visitor always access http://mywebsite.com:8080 instead of http://mywebsite.com ?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
You can just proxy ALL of the requests from nginx to apache, you can’t have multiple programs listening on the same port. <br> <br><pre>server { <br>server_name mywebsite.com; <br> <br>location / { <br> [… proxy_pass to apache …] <br>} <br></pre>
Check out <a href=“http://stackoverflow.com/questions/8541182/apache-redirect-to-another-port”>Apache redirect to another port | Stack Overflow</a>