Apache and nginx reverse proxy settings tutorial, apacheng.pdf

Source: Internet
Author: User
Tags nginx reverse proxy

Apache and nginx reverse proxy settings tutorial, apacheng.pdf
Apache

a2enmod proxya2enmod proxy_httpa2enmod proxy_connect

Edit/etc/apache2/mod-available/proxy. conf

Add this, or modify the proxy in the assistant.

 
          Order allow,deny        Allow from all
 

Set the site configuration file. Take the proxy's local port 3000 as an example. When we access XXXXX.giantbranch.cn, we can access the website with the local port 3000.

 
          ......        ServerName XXXXX.giantbranch.cn        ProxyPass / http://127.0.0.1:3000/        ProxyPassReverse / http://127.0.0.1:3000/        ......
 

Restart (ubuntu is used as an example below)

service apache2 restart

Some systems can do this.

systemctl restart apache2
Nginx

This is much simpler. If you directly create a site configuration file, you can access haha.giantbranch.cn to access port 3001 locally.

server {    ......        listen 80;        server_name haha.giantbranch.cn;        location / {                proxy_pass http://localhost:3001;        }        ......}

Of course, restart it.

service nginx restart

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.