特定の 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/*;
}