Cross-Origin Resource Sharing is a protocol that allows controlled access to resources located outside the scope of a given domain. CORS is similar to SOP with additional features and flexibility.

A common example of CORS usage is if JavaScript needs to patch a request to an API endpoint located on a different domain. If SOP is used, which is followed by XMLHttpRequest and fetch, the request would be blocked. However, using CORS, the request can be allowed to access the requested endpoint.

As you can imagine, there are some advantages and disadvantages of using CORS on your server as it does not protect against cross-domain-based attacks, including CSRF.

The purpose of this tutorial is to give you a quick rundown of how CORS works and how to enable it on an NGINX server.

Why Enable CORS?

Why enable CORS in the first place? In most cases, JavaScript running on the client’s browser does not need to access resources outside its domain. Therefore, disabling CORS can be a good measure for security.

However, on the backend side of things, a legitimate JavaScript code may need to patch a request through to an endpoint outside its domain, which requires having CORS enabled for such functionality to work.

NOTE: The same domain refers to a different protocol, a different domain name, or a different port.

Requests Using CORS

The most common request that uses CORS include:

  • Web Fonts that are defined in @font-face with a web stylesheet.
  • Images and videos drawn on the canvas using drawImage()
  • WebGL textures
  • CSS shapes drawn from images.

Those are some of the basic requests that require CORS to function properly. It is good to understand that there are more concepts about CORS beyond the scope of this tutorial.

Enable CORS on Nginx Server

Let us get to the main part of this tutorial. To enable CORS on NGINX, you need to edit the configuration file (located in /etc/nginx/nginx.conf or usr/local/nginx/conf or /usr/local/etc/nginx) and add the header.

The general syntax to add header directives in Nginx is as:

$ add_header name value [always];

Step 1 – Edit Nginx configuration

Launch your favorite editor and open the Nginx configuration:

$ sudo vim /etc/nginx/sites-enabled/default

Step 2 – Add the header

In the server block of your Nginx configuration, enter the following entry.

$ server {


   add_header Access-Control-Allow-Origin *;

}

Step 3 – Save and Restart Nginx

Finally, save the configuration file and restart nginx.

$ sudo service nginx restart

Step 4 – Confirm CORS

Use cURL to confirm that CORS is enabled as:

$ curl -I http://127.0.0.1

This should give you an output as shown below:

<img alt="" data-lazy- data-lazy-src="https://kirelos.com/wp-content/uploads/2021/07/echo/1-23.jpg" data-lazy- height="231" src="data:image/svg xml,” width=”582″>

Conclusion

That is the end of this tutorial. I hope it helped you achieve the goal of enabling CORS on your Nginx server.

Thank you for reading and sharing.

About the author

<img alt="" data-del="avatar" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/07/echo/john-150×150.png60dde486947e8.jpg" height="112" src="data:image/svg xml,” width=”112″>

John Otieno

My name is John and am a fellow geek like you. I am passionate about all things computers from Hardware, Operating systems to Programming. My dream is to share my knowledge with the world and help out fellow geeks. Follow my content by subscribing to LinuxHint mailing list