Ubuntuのnginxサーバーでhttpsを開く方法

Tencent Cloudの[ガイド](https://cloud.tencent.com/document/product/400/35244?from=10680)はCentOに基づいており、Ubuntuシステムには適用されません。

以下は、Ubuntuに適用されない上記のガイダンス記事の一部に対する修正です。

nginx構成フォルダー:/ etc / nginx /
nginx実行可能ファイル:/ usr / sbin / nginx
httpsサイトを追加します。/etc/nginx/sites-enabled/**サイト構成ファイルを変更します。

変更されたコンテンツ:

server {
 listen 443;
 server_name www.domain.com; #バインディング証明書のドメイン名を入力します
 ssl on;
 root /var/www/www.domain.com; #ウェブサイトのホームページパス。このパスは参照用です。詳細については、実際のディレクトリをたどってください。
 index index.html index.htm;   
 ssl_certificate  /usr/local/nginx/conf/1_www.domain.com_bundle.crt; #証明書ファイルのパス+名前
 ssl_certificate_key /usr/local/nginx/conf/2_www.domain.com.key; #秘密鍵ファイルのパス+名前
 ssl_session_timeout 5m;
 ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
 ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
 ssl_prefer_server_ciphers on;
 location / {
  index index.html index.htm;}}
server {
 listen 80;
 server_name www.domain.com; #バインディング証明書のドメイン名を入力します
 rewrite ^(.*)$ https://$host$1 permanent; #httpドメイン名リクエストをhttpsに変換します
}

Recommended Posts

Ubuntuのnginxサーバーでhttpsを開く方法
Ubuntu20.04にNginxをインストールする方法
Ubuntu14.04でNginxを保護する方法
Ubuntu20.04にNginxをインストールする方法
Ubuntu16.04にNginxをインストールする方法
Ubuntu14.04にBaculaServerをインストールする方法
Ubuntu16.04でSambaサーバーを使用する方法
Ubuntu16.04サーバーにZabbixをインストールする方法
Ubuntu18.04にSquidプロキシサーバーをインストールする方法
Ubuntu14.04でShinyServerをセットアップする方法
Ubuntu18.04サーバーで静的IPを設定する方法
CentOSでNginxサーバーをすばやく構築する方法
Ubuntu18.04サーバーで静的IPを設定する方法
Ubuntu14.04で解析サーバーを実行する方法
Ubuntu16.04のNginxにロギングモジュールを追加する方法
Ubuntu18.04でDNSサーバーを設定する方法
Ubuntu14.04のNginxにgzipモジュールを追加する方法
Ubuntu20.04にRubyをインストールする方法
Ubuntu20.04にJavaをインストールする方法
Ubuntu20.04にVirtualBoxをインストールする方法
Ubuntu20.04にElasticsearchをインストールする方法
UbuntuにProtobuf3をインストールするための詳細なチュートリアル
Ubuntu20.04にApacheをインストールする方法
Ubuntu20.04にGitをインストールする方法
Ubuntu16.04にNode.jsをインストールする方法
Ubuntu20.04にVagrantをインストールする方法
Ubuntu14.04にBacula-Webをインストールする方法
Ubuntu16.04にPostgreSQLをインストールする方法
Ubuntu20.04にGitをインストールする方法
ubuntuでijkplayer-androidをコンパイルする方法
Ubuntu18.04にAnaconda3をインストールする方法
Ubuntu18.04にMemcachedをインストールする方法
Ubuntu16.04にJenkinsをインストールする方法
Ubuntu14.04にMemSQLをインストールする方法
CentOS8にNginxをインストールする方法
Ubuntu20.04にGoをインストールする方法
Ubuntu16.04にMongoDBをインストールする方法
Ubuntu14.04にMailpileをインストールする方法
Ubuntu16.04にPrestaShopをインストールする方法
Ubuntu20.04にSkypeをインストールする方法
Ubuntu20.04にJenkinsをインストールする方法
Ubuntu18.04にKVMをインストールする方法
Ubuntu20.04にKVMをインストールする方法
ubuntu14.04にopencv3.0.0をインストールする方法
Ubuntu16.04にPrometheusをインストールする方法
Ubuntu18.04にJenkinsをインストールする方法
Ubuntu14.04にDjangoをデプロイする方法
Ubuntu20.04にRをインストールする方法
Ubuntu16.04にMoodleをインストールする方法
Ubuntu14.04にSolr5.2.1をインストールする方法
Ubuntu16.04にTeamviewerをインストールする方法
Ubuntu20.04にMariaDBをインストールする方法
Ubuntu20.04にMonoをインストールする方法
Ubuntu20.04にGoをインストールする方法
Ubuntuでソフトウェアをアンインストールする方法
Ubuntu20.04にOpenCVをインストールする方法
Ubuntu20.04にSpotifyをインストールする方法
Ubuntu18.04にPostmanをインストールする方法
Ubuntu16.04にGo1.6をインストールする方法
Ubuntu18.04にGoをインストールする方法
Ubuntu14.04にMySQLをインストールする方法