当前位置:首页 > PHP教程 > php应用 > 列表

php管理nginx虚拟主机shell脚本实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-04-27 15:52:57 浏览: 评论:0 

这篇文章主要介绍了php管理nginx虚拟主机shell脚本的实现方法,以实例形式讲述了通过PHP脚本管理nginx虚拟主机的方法,具有不错的借鉴价值,需要的朋友可以参考下

本文实例讲述了php管理nginx虚拟主机shell脚本,分享给大家供大家参考。具体分析如下:

使用php作为shell脚本是一件很方便的事情。理所当然,我们可以使用php脚本来管理 nginx虚拟主机,下面是笔者的 脚本 文件供各位参考:

  1. #!/usr/bin/php -q 
  2. <?php 
  3.  
  4. start: fwrite(STDOUT,"===========Vhost Script===========\n"); 
  5. fwrite(STDOUT,"= Choose an operation \n"); 
  6. fwrite(STDOUT,"= 1.Create 2.Delete 3.Exit\n"); 
  7. fwrite(STDOUT,"==================================\n"); 
  8. $operate = trim(fgets(STDIN)); 
  9. if ( $operate == 1  ){ 
  10. fwrite(STDOUT,"Please Enter a  Domain Name:"); 
  11. $domain = trim(fgets(STDIN)); 
  12. $path = "/home/sites/{$domain}"
  13. $nginx_conf = "/etc/nginx/sites/{$domain}"
  14. $nginx_template = "/etc/nginx/template/site_conf"
  15. $apache_conf = "/etc/httpd/conf/httpd.conf"
  16. $conf_str = ""
  17.  
  18. //变量初始化 
  19.  
  20. iffile_exists($path ) ) exit ("Domain Existed!\n"); 
  21. else mkdir($path,0700); 
  22. if(file_exists($nginx_conf)) exit ("Nginx Config file existed!\n"); 
  23. else { 
  24.     $conf_str = file_get_contents$nginx_template ); 
  25.  
  26. //目录检测及配置文件拷贝 
  27.  
  28. eval ( "\$conf_str = \"$conf_str\";" ); 
  29.  
  30. $succes = file_put_contents($nginx_conf,$conf_str); 
  31. if( !$succes ) exit ("Write Config File Fauile!"); 
  32. else echo "Create Vhost success!\n"
  33. goto start; 
  34. //写入配置文件 
  35. else if ($operate == 2){ 
  36.     $confs_dir = dir("/etc/nginx/sites"); 
  37.     $confs_list = array(); 
  38.     $count = 0; 
  39.     while ( false !== ( $conf_file = $confs_dir->read() ) ){ 
  40.         if$conf_file == "." ) continue
  41.         if$conf_file == ".." ) continue
  42.         if ( is_file$confs_dir->path ."/"$conf_file) ) { 
  43.             $confs_list[$count++] =  $conf_file
  44.         } 
  45.     } 
  46.     echo "Select a site by number which to delete:\n"
  47.     ifcount$confs_list ) >0 ) 
  48.         foreach ( $confs_list as $k=>$v ){ 
  49.             echo "{$k}. $v\n"
  50.         } 
  51.     $index = trim(fgets(STDIN)); 
  52.     if( in_array ( $index,array_keys$confs_list ) ) ){ 
  53.         copy(  $confs_dir->path ."/"$confs_list[$index],"/etc/nginx/backup/{$confs_list[$index]}" ); 
  54.         unlink ( $confs_dir->path ."/"$confs_list[$index] ); 
  55.         exec("tar -zcf  /home/sites/{$confs_list[$index]}.tar.gz /home/sites/".$confs_list[$index] ); 
  56.         exec("rm -Rf /home/sites/".$confs_list[$index]); 
  57.     } 
  58.     //删除指定配置,并保存备份 
  59. else if$operate == 3 ) { 
  60.     exit
  61. else { 
  62.  exit ("No Operation Selected!"); 
  63. ?> 

下面是nginx的配置模版,代码如下:

  1. server { 
  2. listen 80; 
  3. server_name {$domain}; 
  4. access_log /var/log/nginx/{$domain}_access_log; 
  5. error_log /var/log/nginx/{$domain}_error_log; 
  6. root {$path}; 
  7. #不记录对站点图标访问 
  8. location = /favicon.ico { 
  9. log_not_found off; 
  10. access_log off; 
  11. #不记录对robots.txt的访问 
  12. location = /robots.txt { 
  13. allow all; 
  14. log_not_found off; 
  15. access_log off; 
  16. location = / { 
  17. try_files @proxy; 
  18. location / { 
  19. index index.htm index.html index.php; 
  20. try_files \$uri @proxy; 
  21. #匹配html 
  22. location ~* \.(html|htm)$ { 
  23. expires 30s; 
  24. gzip off; 
  25. add_header Content-Encoding gzip; 
  26. try_files \$uri \$uri/ /wp-content/cache/supercache/\$http_host/\$request_uri/index.html.gz @proxy; 
  27. #匹配图片、脚本文件等 
  28. location ~* \.(jpe?g|gif|png|ico|css|js|flv|swf|avi|zip|rar|svg|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mp3)$ { 
  29. expires 30d; 
  30. #传递给apache 
  31. location @proxy { 
  32. index index.htm index.html index.php; 
  33. proxy_pass   http://127.0.0.1:81; 
  34. include /etc/nginx/proxy.conf; 

希望本文所述对大家的php程序设计有所帮助。

Tags: nginx shell

分享到: