0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Nginxでリバースプロキシを設定してfirewallを回避する

Last updated at Posted at 2024-11-06

任意のポートで実行されているサーバーを特定のポートで外部公開

解放されているポートが固定の環境で、Nginxでリバースプロキシを設定して任意のポートで実行されているサービスを外部公開する方法。
以下の例はAWS Cloud9環境で、外部公開用のポートが8080でポート8000で起動しているサーバーを公開するためのリバースプロキシ設定である。

環境

Ubuntu 22.04環境で検証。

Nginxのインストール

Nginxをインストールする。

apt install nginx

Nginxの設定ファイルを編集

以下ファイルを編集する。

/etc/nginx/sites-enable/default

map $http_upgrade $connection_upgrade {
        default upgrade;
        ''      close;
}

server {
        listen 8080 default_server;
        listen [::]:8080 default_server;
        
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;
        proxy_read_timeout 600;

        location / {
                proxy_pass http://localhost:8000;
                # Proxy headers
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header  Host  $host;
                proxy_set_header  Connection  close;
                proxy_pass_header X-CSRFToken;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-NginX-Proxy true;
                proxy_set_header X-Forwarded-Proto $scheme;
        }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?