惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
B
Blog RSS Feed
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
L
LangChain Blog
IT之家
IT之家
F
Fortinet All Blogs
V
V2EX
C
Check Point Blog
The Cloudflare Blog
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans

老高的博客

WPF 自定义枚举编辑控件 - 老高的博客 2025年度开发趋势有感 - 老高的博客 2025 年终总结 - 老高的博客 MVVM 模式是什么? - 老高的博客 2024 年终总结 - 老高的博客 《飞驰人生2》观后感 - 老高的博客 2023 年终总结 - 老高的博客 项目总结:前后端分离的公司主页站点 - 老高的博客 C# 版本特性记录 - 老高的博客 2022 年终总结 - 老高的博客 在树莓派的 openSUSE 上安装 .NET 6 2021 年终总结 - 老高的博客 从零开始学Python - 02.容器类型 - 老高的博客 让文章更生动 - 老高的博客 2020 年终总结 - 老高的博客 2019 年终总结 - 老高的博客 从零开始学Python - 01.基本类型 - 老高的博客 npm入门 - 老高的博客 为站点添加把锁 - 老高的博客
在树莓派的 openSUSE 上安装 Nginx - 老高的博客
2022-04-02 · via 老高的博客

系统信息

  • 树莓派 3B+
  • openSUSE 15
  • Nginx

确认 Nginx 的安装状态

如果状态显示 Status : not installed 则说明系统中并没有安装 Nginx。

安装 Nginx

shell

1
sudo zypper install nginx

将 Nginx 设置成开机自动启动

shell

1
sudo systemctl enable nginx.service

启动 Nginx

shell

1
sudo systemctl start nginx.service

确认 Nginx 的端口状态

shell

1
sudo ss -tulpn | grep nginx

默认状态下,Nginx 会占用系统的 80 端口。

建立一个欢迎网页

shell

1
sudo nano /srv/www/htdocs/index.html

输入简单的内容:

html

1
2
3
4
5
6
7
8
<html>
    <head>
        <title>Hello Nginx</title>
    </head>
    <body>
        Hello Nginx!
    </body>
</html>

查看服务器的 IP 地址:

在客户机的浏览器内输入服务器的 IP 地址,则可以看到刚刚做成的欢迎网页。

comments powered by