我想将特定的 URL 重定向到在不同端口上运行的本地服务器,不确定我需要在 nginx.config 中添加什么。谢谢!
e.g: for url /v1/jobs
I want to direct it to a local server running on port 9090
以下是我当前的 nginx 配置设置:
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}