Detailed explanation of solving the problem of cross-domain access of nginx/apache static resources

Detailed explanation of solving the problem of cross-domain access of nginx/apache static resources

1. Apache static resource cross-domain access

Find the Apache configuration file httpd.conf

Find this line

#LoadModule headers_module modules/mod_headers.so

Remove the # comment character

LoadModule headers_module modules/mod_headers.so

The purpose is to enable the Apache header information custom module

Add a new header to the standalone host configuration file

Header set Access-Control-Allow-Origin *

For example:

<VirtualHost *:88>
 ServerAdmin [email protected]
 DocumentRoot "****************"
 ServerName www.jb51.com
 Header set Access-Control-Allow-Origin *

 ErrorLog "***********"
 CustomLog "****************************" common
<Directory "**************">
 SetOutputFilter DEFLATE
 Options FollowSymLinks ExecCGI
 Require all granted
 AllowOverride All
 Order allow, deny
 Allow from all
 DirectoryIndex index.html index.php
</Directory>
</VirtualHost>
ApacheCopy

This means adding a header when accessing resources on this domain name.

Restart apache

service httpd restart

2. nginx static resources allow cross-domain access

Similarly, find the corresponding domain name configuration file

Add configuration in the server module:

add_header 'Access-Control-Allow-Origin' '*';

example:

server {
    listen 80;
    add_header 'Access-Control-Allow-Origin' '*';
    location /Roboto/ {
      root /home/images;
      autoindex on;
    }
  }

nginx reload

./nginx -s reload

After configuring through the above method, there is no problem in accessing static resources across domains again

The above is the solution to allow cross-domain access to nginx/apache static resources

You may also be interested in:
  • How to use nginx to access local static resources on Linux server
  • Detailed explanation of Nginx + Tomcat to separate requests for dynamic data and static resources
  • Detailed explanation of simple configuration of nginx static resource server
  • Nginx implements reverse proxy example of static resources
  • Use nginx-http-concat module to merge static resource files in nginx
  • How to publish static resources in nginx

<<:  Summary of Binlog usage of MySQL database (must read)

>>:  JavaScript uses setTimeout to achieve countdown effect

Recommend

Detailed explanation of CSS background and border tag examples

1. CSS background tag 1. Set the background color...

Zen coding resource update function enhancement

Official website: http://code.google.com/p/zen-cod...

How to use JavaScript strategy pattern to validate forms

Table of contents Overview Form validation withou...

How to deploy python crawler scripts on Linux and set up scheduled tasks

Last year, due to project needs, I wrote a crawle...

Implementation of building custom images with Dockerfile

Table of contents Preface Introduction to Dockerf...

In-depth understanding of Vue-cli4 routing configuration

Table of contents Preface - Vue Routing 1. The mo...

Install Zookeeper under Docker (standalone and cluster)

After starting Docker, let's take a look at t...

mysql delete multi-table connection deletion function

Deleting a single table: DELETE FROM tableName WH...

InnoDB engine redo file maintenance method

If you want to adjust the size and number of Inno...

CSS writing format, detailed explanation of the basic structure of a mobile page

1. CSS writing format 1. Inline styles You can wr...

How to use DPlayer.js video playback plug-in

DPlayer.js video player plug-in is easy to use Ma...

Implementation example of scan code payment in vue project (with demo)

Table of contents Demand background Thought Analy...

How to add ansible service in alpine image

Use apk add ansible to add the ansible service to...

Mysql table creation foreign key error solution

Database Table A: CREATE TABLE task_desc_tab ( id...