支持https访问

文章目录

      • [1. 打开自己的云服务器的 80 和 443 端口](#1. 打开自己的云服务器的 80 和 443 端口)
      • [2. 安装 nginx](#2. 安装 nginx)
      • [3. 安装 snapd](#3. 安装 snapd)
      • [4. 安装 certbot](#4. 安装 certbot)
      • [5. 生成证书](#5. 生成证书)
      • [6. 拷贝生成的证书到项目工作目录](#6. 拷贝生成的证书到项目工作目录)
      • [7. 修改 main.go 程序如下](#7. 修改 main.go 程序如下)
      • [8. 编译程序](#8. 编译程序)
      • [9. 启动程序](#9. 启动程序)
      • [10. 使用 https 和端口 8081 访问页面成功](#10. 使用 https 和端口 8081 访问页面成功)
      • [11. 下面修改程序,支持 https 和 http 能同时访问](#11. 下面修改程序,支持 https 和 http 能同时访问)
      • [12. 编译](#12. 编译)
      • [13. 启动程序](#13. 启动程序)
      • [14. 使用 http 和 8080 端口访问成功](#14. 使用 http 和 8080 端口访问成功)
      • [15. 使用 https 和 8081 端口访问成功](#15. 使用 https 和 8081 端口访问成功)

1. 打开自己的云服务器的 80 和 443 端口

打开某为云官网 https://console.huaweicloud.com/



2. 安装 nginx

shell 复制代码
sudo apt update
sudo apt-get install nginx
nginx -v

3. 安装 snapd

shell 复制代码
sudo apt install snapd
sudo apt-get remove certbot

4. 安装 certbot

shell 复制代码
sudo snap install --classic certbot

5. 生成证书

shell 复制代码
sudo certbot certonly --nginx

6. 拷贝生成的证书到项目工作目录

shell 复制代码
cd ~/dev/go/screen_share
mkdir conf
cp /etc/letsencrypt/live/www.liangzixuexi.com/fullchain.pem   ~/dev/go/screen_share/conf/
cp /etc/letsencrypt/live/www.liangzixuexi.com/privkey.pem   ~/dev/go/screen_share/conf/

7. 修改 main.go 程序如下

go 复制代码
package main

import (
  "fmt"
  "net/http"
)

func main() {
  // 1.定义一个 URL 前缀
  staticURL := "/static/"
  // 2.定义一个 FileServer
  fs := http.FileServer(http.Dir("./static"))
  // 3.绑定 url 和 FileServer
  http.Handle(staticURL, http.StripPrefix(staticURL, fs))
  // 4.启动 HttpServer
  //err := http.ListenAndServe(":8080",nil)
  err := http.ListenAndServeTLS(":8081", "./conf/fullchain.pem", "./conf/privkey.pem", nil)
  if err != nil {
    fmt.Println(err)
  }
}

8. 编译程序

shell 复制代码
sh build.sh
shell 复制代码
#!/bin/bash
go build -o screen_share src/*

9. 启动程序

shell 复制代码
./screen_share

10. 使用 https 和端口 8081 访问页面成功

shell 复制代码
https://www.liangzixuexi.com:8081/static/share.html

但是现在只能通过 https 访问,原来的 http 不能访问了

11. 下面修改程序,支持 https 和 http 能同时访问

go 复制代码
package main

import (
  "fmt"
  "net/http"
)

func startHttp(port string){
  fmt.Printf("Start Http port: %s\n", port)
  err := http.ListenAndServe(port, nil)
  if err != nil {
    fmt.Println(err)
  }
}

func startHttps(port, cert, key string){
  fmt.Printf("Start Https port: %s\n", port)
  err := http.ListenAndServeTLS(port, cert, key, nil)
  if err != nil {
    fmt.Println(err)
  }
}

func main() {
  // 1.定义一个 URL 前缀
  staticURL := "/static/"
  // 2.定义一个 FileServer
  fs := http.FileServer(http.Dir("./static"))
  // 3.绑定 url 和 FileServer
  http.Handle(staticURL, http.StripPrefix(staticURL, fs))
  // 4.启动 HttpServer
  //err := http.ListenAndServe(":8080",nil)
  go startHttp(":8080")
  //err := http.ListenAndServeTLS(":8081", "./conf/fullchain.pem", "./conf/privkey.pem", nil)
  // 5.启动 HttpsServer
  startHttps(":8081", "./conf/fullchain.pem", "./conf/privkey.pem")
}

12. 编译

shell 复制代码
sh build.sh

13. 启动程序

shell 复制代码
./screen_share

14. 使用 http 和 8080 端口访问成功

输入 http://www.liangzixuexi.com:8080/static/share.html

15. 使用 https 和 8081 端口访问成功

输入 https://www.liangzixuexi.com:8081/static/share.html

相关推荐
2501_915918417 小时前
iOS 上架全流程指南 iOS 应用发布步骤、App Store 上架流程、uni-app 打包上传 ipa 与审核实战经验分享
android·ios·小程序·uni-app·cocoa·iphone·webview
00后程序员张9 小时前
iOS App 混淆与加固对比 源码混淆与ipa文件混淆的区别、iOS代码保护与应用安全场景最佳实践
android·安全·ios·小程序·uni-app·iphone·webview
FPGA_Linuxer9 小时前
FPGA 40 DAC线缆和光模块带光纤实现40G UDP差异
网络协议·fpga开发·udp
real 19 小时前
传输层协议UDP
网络·网络协议·udp
ftpeak16 小时前
从零开始使用 axum-server 构建 HTTP/HTTPS 服务
网络·http·https·rust·web·web app
hsjkdhs18 小时前
网络编程之UDP广播与粘包问题
网络·网络协议·udp
00后程序员张19 小时前
详细解析苹果iOS应用上架到App Store的完整步骤与指南
android·ios·小程序·https·uni-app·iphone·webview
yzx99101320 小时前
接口协议全解析:从HTTP到gRPC,如何选择适合你的通信方案?
网络·人工智能·网络协议·flask·pygame
2501_9151063221 小时前
Xcode 上传 ipa 全流程详解 App Store 上架流程、uni-app 生成 ipa 文件上传与审核指南
android·macos·ios·小程序·uni-app·iphone·xcode
2301_821046521 天前
Python与Go结合
ios·iphone