重装 Centos 7 系统后的环境初始化
修改主机名
1 | # sudo hostnamectl set-hostname <new_hostname> |
安装nginx
1 | yum install nginx -y # yum 安装 nginx |
更详细配置见下方 nginx 配置
unzip
1 | yum install unzip -y # yum 安装 nginx |
nginx 配置
blog.conf
1 | server { |
game.conf
1 | set $game_path "/var/www/Game"; |