linux上nginx添加虚拟主机bash脚本
- 2017-09-07 17:56:34
- 脚本
- 22
- shevechco
适用于我的编译教程,只适合centos6上,mark下,以后直接复制粘贴就行了。
#!/bin/bash #author merci #default web dir :/data/www/ function add_vhost(){ read -p "Please input your domain : " domain CONF="/usr/local/nginx/conf/vhost/$domain.conf" if [ ! -f "$CONF" ] then mkdir -p /data/www/$domain touch /data/www/$domain/index.php echo "<?php phpinfo(); ?>" > /data/www/$domain/index.php touch $CONF echo "server {\n listen 80;\n server_name www.$domain $domain;\n index index.php index.html;\n root /data/www/$domain;\n include php.conf;\n}" > $CONF /etc/init.d/nginx reload echo "Add vhost successfly! please visit http://$domain" else echo -e "Web config already exist !" exit 0 fi } function del_vhost(){ read -p "Please input the domain you want to delete : " domain CONF="/usr/local/nginx/conf/vhost/$domain.conf" if [ ! -f "$CONF" ] then echo -e "Web config not exist !" exit 0 else rm -rf $CONF /etc/init.d/nginx reload echo -e "Web config deleted successfly !" fi } function list_vhost(){ vhostlist=`ls /usr/local/nginx/conf/vhost/` for a in $vhostlist do echo $a done } echo -e "1.Add vhost config !" echo -e "2.Del vhost config !" echo -e "3.List vhost config !" read -p "Please choose id :" c case $c in 1 ) add_vhost ;; 2 ) del_vhost ;; 3 ) list_vhost ;; * ) echo "Please choose correct" ;; esac
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:http://www.sulao.cn/post/422
相关推荐
- k8s基于clusterrole生成集群级别只读用户bash脚本
- linux下使用supervisor发布flask应用
- flask使用nginx代理以后图片上传和加载问题解决方法
- linux下strace用法详解
- nginx反向代理http/https、rpc/grpc、ws/wss
- linux进程管理工具supervisor部署配置
- nginx四层负载均衡配置解析以及卡顿问题的处理
- centos7部署k8s多master高可用集群(k8s+containerd+nginx+keepalived)
- k8s部署ingress-nginx
- linux下NVLink版NVIDIA A100安装Fabric-manager的方法