Я пытаюсь включить подстановочный знак CORS на NGINX следующим образом:
nginx .conf
worker_processes auto;
error_log "/opt/bitnami/nginx/logs/error.log";
pid "/opt/bitnami/nginx/tmp/nginx.pid";
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log "/opt/bitnami/nginx/logs/access.log";
add_header X-Frame-Options SAMEORIGIN;
client_body_temp_path "/opt/bitnami/nginx/tmp/client_body" 1 2;
proxy_temp_path "/opt/bitnami/nginx/tmp/proxy" 1 2;
fastcgi_temp_path "/opt/bitnami/nginx/tmp/fastcgi" 1 2;
scgi_temp_path "/opt/bitnami/nginx/tmp/scgi" 1 2;
uwsgi_temp_path "/opt/bitnami/nginx/tmp/uwsgi" 1 2;
sendfile on;
tcp_nopush on;
tcp_nodelay off;
gzip on;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_proxied any;
gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
keepalive_timeout 65;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
client_max_body_size 80M;
server_tokens off;
include "/opt/bitnami/nginx/conf/server_blocks/*.conf";
# HTTP Server
server {
# port to listen on. Can also be set to an IP:PORT
listen 8080;
location / {
add_header 'Access-Control-Allow-Origin' '*';
}
location /status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
}
}
Когда я инициирую запрос на URL http://localhost:9999/hello/sali
следующим методом:
methods: {
load_user(event) {
console.log(this.$kc)
const config = {
headers: {Authorization: `Bearer ${this.$kc.token}`}
};
this.$axios.get('http://localhost:9999/hello/sali', config)
.then((response) => {
console.log(response)
})
.catch(() => {
console.log("errro")
})
},
Затем он показывает мне в консоли javascript:
Посмотрев на раздел «Сеть» в Chromium:
, вы увидите, что Access-Control-Allow-Origin
установлено на *
Что я делаю не так?
Подсказка: я использую NGINX Bitami .