Skip to content

Static website (静态网站)-部署阿里云

部署一个静态的打包文件到阿里云服务器上,步骤和命令记录如下

1.首先买台服务器

装个CentOS 7.9 64位的系统

==========

安装 Node.js

安装 Node.js,可以使用 NodeSource 提供的安装脚本

js
curl -fsSL https://rpm.nodesource.com/setup_16.x | sudo bash -
sudo yum install -y nodejs

安装 Nginx

安装 Nginx 用于处理 HTTP 请求:

js
sudo yum install -y epel-release
sudo yum install -y nginx

编辑 Nginx 配置文件

编辑 Nginx 默认配置文件:

js
sudo vi /etc/nginx/nginx.conf
或者直接用ftp工具直接找到文件IDE编辑器直接修改也可以

修改内容:
http {
    # ... 其他配置 ...

    server {
        listen 80;
        server_name your_domain_or_ip; # 替换为你的域名或服务器IP

        location / {
            root /path/to/your/web/root; # 替换为实际路径
            index index.html;
            try_files $uri $uri/ /index.html;
        }

        # 其他配置...
    }
}

测试并重新加载 Nginx 配置

测试 Nginx 配置文件是否正确:

js
sudo nginx -t

没有错误,重新加载 Nginx 配置:

js
启动Nginx
sudo systemctl start nginx
# 如果Nginx已经在运行,使用以下命令重启
sudo systemctl restart nginx

设置防火墙(配置中提示未运行其实也可访问)

确保你的服务器允许 HTTP 流量。 开放 HTTP 端口

js
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --reload

打包你的项目文件

放置到nginx指定的目录下

image-20240521181706968

额外步骤:使用 HTTPS(可选)

为了更安全地传输数据,你可以配置 HTTPS。你可以使用 Let's Encrypt 免费获取 SSL 证书,并配置 Nginx 使用该证书。

安装 Certbot

js
sudo yum install -y certbot python2-certbot-nginx

获取 SSL 证书

js
sudo certbot --nginx -d your_domain

自动续期(Certbot 自动配置了续期任务,你可以检查续期任务:)

js
sudo certbot renew --dry-run

删除指定的证书

js
sudo certbot certificates
sudo certbot delete --cert-name your_cert_name

完成

经过这些步骤,你的 VitePress 站点应该已经成功部署到阿里云服务器,并可以通过 IP 地址或域名访问。

2024 Alvisliu. All Rights Reserved.