neogenia-jp / EzGate

Simple docker container that make it easy to set up a reverse proxy.
Apache License 2.0
2 stars 0 forks source link

リダイレクト機能 #6

Closed lobin-z0x50 closed 2 years ago

lobin-z0x50 commented 2 years ago

以下のように redirect_to でリダイレクト先を指定したい。

# 旧ドメインでアクセスされたら、新ドメインにリダイレクト
domain('old.example.com') {
  redirect_to 'new.example.com'

  # オプション
  redirect_to 'new.example.com', status: 302   # HTTPステータス指定
}