Home Backend Development PHP Tutorial The simplest way to achieve cross-domain: use nginx reverse proxy

The simplest way to achieve cross-domain: use nginx reverse proxy

Jul 29, 2016 am 09:15 AM
nbsp nginx quot url

What is cross-domain? Cross-domain means that the browser cannot execute scripts from other websites. It is caused by the browser's same-origin policy, which is a security restriction imposed by the browser on JavaScript. The so-called same origin means that the domain name, protocol and port are the same. When the browser executes a javascript script, it will check which page the script belongs to. If it is not the same origin page, it will not be executed. The purpose of the same-origin policy is to prevent hackers from doing criminal activities. For example, if a bank application allows users to upload web pages, if there is no same-origin policy, a hacker can write a login form and submit it to his own server, and get a page that looks quite high-end. The hacker sends this page to the user via email, etc. The user mistakenly thinks that this is the main webpage of a certain bank and logs in, which will leak their user data. And because of the browser's same-origin policy, hackers cannot receive form data. Now with the popularity of RESTFUL, many applications provide APIs with http/https interfaces and provide services to the outside world through xml/json format to achieve an open architecture. For example, websites and applications such as Weibo, WeChat, Weather Forecast, and openstack all provide restful interfaces. Web applications are also developing towards single pages. More and more web applications now have this architecture: Static single web pageajaxCallRESTFUL serviceWe could have used the APIs provided by various websites to make many wonderful web applications . However, the cross-domain restrictions when browsers execute JavaScript have become a stumbling block for this type of open architecture. This article proposes a simple and effective way to solve cross-domain problems. Commonly used cross-domain methodsCommonly used cross-domain methods include the following: 1. Use iFrame to access another domain. Then read the contents of the iFrame from another page. There are some packages for jquery and so on. It is said that Firefox and others may not support reading the content of another iFrame. 2,jsonp. Requires server support. Use script src to dynamically get a piece of java code. It is the js function on the callback page, and the parameter is a json object. jquery also has encapsulation. 3. Set the http header, Access-Control-Allow-Origin: *But it is said that some versions of IE do not recognize this http header. 4, server proxy. For example, the server writes a url processing action. Its parameter is a url. This server will use parameters to piece together a URL, use the httpclient library to execute the URL, and then output the read content to the http client. nginx reverse proxy realizes cross-domainThe cross-domain methods mentioned above all have some problems. Some cannot support all browsers, some need to modify the javascript code, and some need to rewrite the server-side code. Some may have problems in scenarios such as sessions. In fact, using nginx reverse proxy to achieve cross-domain is the simplest cross-domain method. You only need to modify the configuration of nginx to solve cross-domain problems. It supports all browsers and sessions, does not need to modify any code, and will not affect server performance. We only need to configure nginx and configure multiple prefixes on one server to forward http/https requests to multiple real servers. In this way, all URLs on this server have the same domain name, protocol and port. Therefore, for browsers, these URLs are of the same origin and there are no cross-domain restrictions. And in reality, these URLs are actually served by physical servers. The javascript within these servers can call URLs on all these servers across domains. Below, an example of nginx supporting cross-domain is given for detailed explanation. For example, we have two projects developed by pythonflask: testFlask1 and testFlask2. The javascript script on the testFlask2 project needs to call a url of testFlask1 through ajax to obtain some data. Under normal deployment, there will be cross-domain problems, and the browser will refuse to execute calls like the following.

1

2

3

4

5

$("button").click(function () {

    $.get("127.0.0.1:8081/partners/json", function(result) {

        $("div").html(result);

    });

});

Let’s modify the javascrip file of the testFlask2 project. In this way, there will be no cross-domain problems when accessing URLs from the same source.

1

2

3

4

5

$("button").click(function () {

    $.get("partners/json", function(result) {

        $("div").html(result);

    });

});

However, our testFlask2 project actually does not have a url like partners/json, so how to deal with it? We write the nginx configuration file like this:

1

2

3

4

5

6

7

8

9

10

11

12

server{

listen8000;

location/ {

includeuwsgi_params;

uwsgi_passunix:/tmp/testFlask2.sock;

  }

  location/partners {

    rewrite^.+partners/?(.*)$ /$1 break;

    includeuwsgi_params;

    uwsgi_passunix:/tmp/testFlask1.sock;

  }

}

We deployed the testFlask2 project in the root directory of port 8080. Deploy the testFlask1 project that provides web services in the /partners directory. But our testFlask1 project cannot handle url requests like /partners/json. then what should we do? By rewrite^.+partners/?(.*)$ /$1 break; this command, nginx can convert all received /partners/* requests into /* requests and then forward them to the real web server behind it. In this way, RESTFUL's ajax client program only needs to give the URL with a specific prefix to call the RESTFUL interface provided by any server. Even, through the reverse proxy of nginx, we can call the RESTFUL interface provided by websites developed by other companies. Such as,

1

2

3

4

5

location/sohu {

rewrite^.+sohu/?(.*)$ /$1 break;

includeuwsgi_params;

proxy_passhttp://www.sohu.com/;

}

We will move the entire sohu website to our 8080:/sohu/ directory, and our javascript can freely call its RESTFUL service. By the way, rewrite^.+sohu/?(.*)$ /$1 break; In this command, $1 represents the (.*) part. The parameters in the first pair () are $1, the parameters in the second pair () are $2, and so on. SummaryThis article introduces how to use the reverse proxy function of nginx to achieve cross-domain access to any application and website. nginx is a high-performance web server commonly used as a reverse proxy server. As a reverse proxy server, nginx forwards http requests to another or some servers. Cross-domain access can be achieved by mapping a local url prefix to the web server to be accessed cross-domain. For the browser, what you access is a URL on the same origin server. And nginx forwards the http request to the real physical server behind by detecting the url prefix. And remove the prefix through the rewrite command. This way the real server can handle the request correctly and not know that the request came from the proxy server. Simply put, the nginx server deceives the browser into thinking that it is a same-origin call, thereby solving the browser's cross-domain problem. By rewriting the URL, it deceives the real server into thinking that the http request comes directly from the user's browser. In this way, in order to solve the cross-domain problem, you only need to change the nginx configuration file. Simple, powerful and efficient!

The above introduces the simplest method to achieve cross-domain: using nginx reverse proxy, including aspects of the content, I hope it will be helpful to friends who are interested in PHP tutorials.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to allow external network access to tomcat server How to allow external network access to tomcat server Apr 21, 2024 am 07:22 AM

To allow the Tomcat server to access the external network, you need to: modify the Tomcat configuration file to allow external connections. Add a firewall rule to allow access to the Tomcat server port. Create a DNS record pointing the domain name to the Tomcat server public IP. Optional: Use a reverse proxy to improve security and performance. Optional: Set up HTTPS for increased security.

How to run thinkphp How to run thinkphp Apr 09, 2024 pm 05:39 PM

Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

Welcome to nginx!How to solve it? Welcome to nginx!How to solve it? Apr 17, 2024 am 05:12 AM

To solve the "Welcome to nginx!" error, you need to check the virtual host configuration, enable the virtual host, reload Nginx, if the virtual host configuration file cannot be found, create a default page and reload Nginx, then the error message will disappear and the website will be normal show.

How to communicate between docker containers How to communicate between docker containers Apr 07, 2024 pm 06:24 PM

There are five methods for container communication in the Docker environment: shared network, Docker Compose, network proxy, shared volume, and message queue. Depending on your isolation and security needs, choose the most appropriate communication method, such as leveraging Docker Compose to simplify connections or using a network proxy to increase isolation.

How to deploy nodejs project to server How to deploy nodejs project to server Apr 21, 2024 am 04:40 AM

Server deployment steps for a Node.js project: Prepare the deployment environment: obtain server access, install Node.js, set up a Git repository. Build the application: Use npm run build to generate deployable code and dependencies. Upload code to the server: via Git or File Transfer Protocol. Install dependencies: SSH into the server and use npm install to install application dependencies. Start the application: Use a command such as node index.js to start the application, or use a process manager such as pm2. Configure a reverse proxy (optional): Use a reverse proxy such as Nginx or Apache to route traffic to your application

How to register phpmyadmin How to register phpmyadmin Apr 07, 2024 pm 02:45 PM

To register for phpMyAdmin, you need to first create a MySQL user and grant permissions to it, then download, install and configure phpMyAdmin, and finally log in to phpMyAdmin to manage the database.

How to generate URL from html file How to generate URL from html file Apr 21, 2024 pm 12:57 PM

Converting an HTML file to a URL requires a web server, which involves the following steps: Obtain a web server. Set up a web server. Upload HTML file. Create a domain name. Route the request.

What to do if the installation of phpmyadmin fails What to do if the installation of phpmyadmin fails Apr 07, 2024 pm 03:15 PM

Troubleshooting steps for failed phpMyAdmin installation: Check system requirements (PHP version, MySQL version, web server); enable PHP extensions (mysqli, pdo_mysql, mbstring, token_get_all); check configuration file settings (host, port, username, password); Check file permissions (directory ownership, file permissions); check firewall settings (whitelist web server ports); view error logs (/var/log/apache2/error.log or /var/log/nginx/error.log); seek Technical support (phpMyAdmin

See all articles