nginx搭建游戏网站

  • nginx搭建游戏网站
1.注释掉之前的默认网站
[root@web01 html]# cd /etc/nginx/conf.d/
[root@web01 conf.d]# gzip default.conf 
2.编写游戏网站Nginx配置文件
[root@web01 conf.d]# cat game.oldxu.com.conf 
server {
	listen 80;			#该网站提供访问的端口
	server_name game.oldxu.com;	#访问该网站的域名
	
	location / {
		root /code;
		index index.html;
	}
}
3.根据Nginx的配置文件,初始化
[root@web01 conf.d]# mkdir /code
4.上传代码(此处代码只要是游戏代码就行,最好为五子棋或者坦克大战!)
[root@web01 conf.d]# cd /code/
[root@web01 code]# rz html5.zip
[root@web01 code]# unzip html5.zip 
5.检测语法
[root@web01 code]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
6.重载服务
[root@web01 code]# systemctl restart nginx
7.配置域名解析
本机host配置(真实云环境进行域名与服务器绑定即可访问)
8.Nginx访问网站的整体流程
http://    game.oldxu.com     /      game/yibihua/index.html
请求的uri:		/game/yibihua/index.html
真实映射位置:   /code/game/yibihua/index.html
posted @ 2019-11-08 09:52  老王教你学Linux  阅读(448)  评论(0编辑  收藏  举报