Files
script/nginx
牡蛎 d47715ee40 refactor/nginx: 优化 404 页面和首页的样式
- 重新设计了 404 页面的布局和样式,使其更加简洁和响应式
- 添加了暗黑模式支持,提升用户体验
- 优化了首页的样式,增加了链接的视觉效果
2025-06-08 11:42:47 +08:00
..

Nginx

安装 Nginx

安装 Nginx

apt-get update && apt-get install nginx

启动 Nginx

systemctl start nginx

开机自启动

systemctl enable nginx

查看状态

systemctl status nginx

Nginx 配置

下载配置

curl -fsSL https://i.sugarscat.cn/me/script/-/raw/main/nginx/nginx.conf > /etc/nginx/nginx.conf

测试配置

nginx -t

重启 nginx

systemctl restart nginx