🎯nginx服务部署与配置(部署网页小游戏)

一.上传web游戏代码文件、解压

web小游戏 链接:https://pan.baidu.com/s/1I_N1jTqW7PynLxNa1StXQQ
提取码:aqla

二.修改nginx配置文件,指定共享的目录

1.修改nginx配置文件

yum命令源代码👇👇👇👇

[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true

三.开始安装nginx

2.指定共享目录

设置端口和共享目录的代码⬇⬇⬇⬇⬇⬇⬇⬇

server {
    listen       8070;
    server_name  localhost;
    location / {
        root   /home/game/xyx1;
        index  index.html index.htm;
    }

 }

四.rar压缩包的解压方式

rar解压软件 链接:https://pan.baidu.com/s/16emelsZu9p4oguVZjAYX-w
提取码:r0va

五.更多rar命令语法:

https://www.cnblogs.com/hechangchun/articles/9466582.html

posted @ 2020-09-12 16:32  给你骨质唱疏松  阅读(393)  评论(0编辑  收藏  举报