nginx如何添加到UFW,nginx没有出现在UFW lst中?
How can nginx be added to UFW, nginx is not appearing in the UFW lst?
如何将nginx添加到UFW。 nginx 没有出现在 UFW lst 中?
当运行命令:
ufw app list
Nginx 没有出现在里面。
nginx如何加入UFW?
任何帮助将不胜感激?
添加自己的应用很容易:
创建文件:
/etc/ufw/applications.d/nginx
内容如下:
[Nginx]
title=Nginx Web Server (HTTP + HTTPS)
description=Small, but very powerful and efficient web server
ports=80,443/tcp
向 ufw 介绍新应用:
ufw app update Nginx
允许 Nginx:
ufw allow Nginx
如何将nginx添加到UFW。 nginx 没有出现在 UFW lst 中?
当运行命令:
ufw app list
Nginx 没有出现在里面。 nginx如何加入UFW?
任何帮助将不胜感激?
添加自己的应用很容易:
创建文件:
/etc/ufw/applications.d/nginx
内容如下:
[Nginx]
title=Nginx Web Server (HTTP + HTTPS)
description=Small, but very powerful and efficient web server
ports=80,443/tcp
向 ufw 介绍新应用:
ufw app update Nginx
允许 Nginx:
ufw allow Nginx