Movatterモバイル変換


[0]ホーム

URL:


  1. How to ...
  2. Configure reverse proxy

How to ...

Configure reverse proxy

Caddy 2

You get HTTPS for free and forever just by usingCaddy:

{http_port80https_port443}asouldocs.dev {reverse_proxy* localhost:5555}

NGINX

Here is an example of NGINX config section, but values can be different based on your situation:

server {listen80;server_nameasouldocs.dev;location/ {proxy_passhttp://localhost:5555;    }}
On this page

[8]ページ先頭

©2009-2025 Movatter.jp