Home > Backend Development > PHP Tutorial > 请教如何用PHP或shell自动给nginx添加域名

请教如何用PHP或shell自动给nginx添加域名

WBOY
Release: 2016-06-06 20:47:07
Original
1234 people have browsed it

需求:通过PHP,将手动输入的域名,绑定到本机
要求:安全

一般的情况让nginx绑定域名需要这么做

  1. vi nginx.conf
  2. 修改server块,在server_name添加要绑定的域名,如:
    server_name test.com admin.com;
  3. 重新加载nginx
    nginx -s reopen

请问如果要将上面这一个过程通过PHP自动化,该如何做呢,我该如何告诉nginx给自己的server_name加上要绑定的域名,再重新加载配置文件呢?

回复内容:

需求:通过PHP,将手动输入的域名,绑定到本机
要求:安全

一般的情况让nginx绑定域名需要这么做

  1. vi nginx.conf
  2. 修改server块,在server_name添加要绑定的域名,如:
    server_name test.com admin.com;
  3. 重新加载nginx
    nginx -s reopen

请问如果要将上面这一个过程通过PHP自动化,该如何做呢,我该如何告诉nginx给自己的server_name加上要绑定的域名,再重新加载配置文件呢?

你可以使用 php 去修改配置文件,或者使用 php 调用命令来修改配置文件,或者写个 C 程序所有者为 root、权限 u+s 来给 php 调用,以避免直接使用 root 身份运行 php 脚本。

用php调用shell脚本更方便,php仅仅是个调用者,所有的事情都是另外的shell脚本做的,这样还安全。

另外或者通过crontab定时执行shell脚本来查询是否有php产生的域名添加任务,这样基本上php和具体执行添加任务的脚本没有明确的调用关系。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template