Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.13 KB

8.md

File metadata and controls

49 lines (29 loc) · 1.13 KB

😶‍🌫️Nginx官网地址

❤️❤️💕💕🐾🐾

😶‍🌫️我的学习笔记(github)


区块链技术(也称之为分布式账本技术),是一种互联网数据库技术,其特点是去中心化,公开透明,让每一个人均可参与的数据库记录

❤️💕💕关于区块链技术,可以关注我,共同学习更多的区块链技术。博客http://nsddd.top


开始实战

[toc]

配置文件

	server {
		listen     82;
		server_name   localhost;
	}

刷新

root@ubuntu:/usr/sbin# ./nginx -s reload

查看端口

root@ubuntu:/usr/sbin# netstat -tunlp |grep nginx
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      1018/nginx: master  
tcp        0      0 0.0.0.0:82              0.0.0.0:*               LISTEN      1018/nginx: master  
tcp6       0      0 :::80                   :::*                    LISTEN      1018/nginx: master  

访问

image-20220515180050769