nginx.conf가 있습니다.
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
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 /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
server_name localhost;
resolver 172.31.0.2;
set $proxy_pass_url https://my-url.com;
# redirect /kibana
location = /kibana {
rewrite ^ /_plugin/kibana redirect;
}
location / {
proxy_pass $proxy_pass_url;
auth_basic "Username and Password are required";
auth_basic_user_file /etc/nginx/.htpasswd;
proxy_set_header Authorization "";
proxy_hide_header Authorization;
}
include /etc/nginx/conf.d/*.conf;
}
}
proxy_pass_url
나중에 conf 파일에서 사용하기 위해 설정하려고 합니다 . 세트를 사용하는 이유가 설명되어 있습니다.여기.
하지만 계속해서 다음과 같은 결과가 나타납니다.
invalid number of arguments in "set" directive in /etc/nginx/nginx.conf
내가 도대체 뭘 잘못하고있는 겁니까? nginx에서 변수를 어떻게 설정합니까? 나도 시도했다set $proxy_pass_url "https://my-url.com";