美文网首页互联网科技
linux下如何添加子域名

linux下如何添加子域名

作者: PM回忆录 | 来源:发表于2019-01-21 00:47 被阅读4次

本文目录:

1.域名解析配置

2.服务器配置

1.子域名解析

找到域名商,设置解析

如图,主机记录填写子域名名称

2.服务器配置

首先在conf文件中增加一个server{},可直接复制之前的代码,只需要修改其中加粗部分字段:

server {listen 80;server_name子域名.域名.com;index index.html index.htm index.php;root子域名的目录地址;include /etc/nginx/default.d/*.conf;#php服务的解析,无php服务请删掉此段代码location ~ \.php$ {fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;fastcgi_param PHP_VALUE open_basedir=$document_root:/tmp/:/proc/;include fastcgi_params;}error_page 404 /404.html;location = /40x.html {}error_page 500 502 503 504 /50x.html;location = /50x.html {}}


完。

ps:你可可以在conf文件中加入include conf.d/*.conf,然后在conf文件的目录下找到conf.d文件夹中建立xx.conf,将以上代码写入conf文件中即可。

相关文章

网友评论

    本文标题:linux下如何添加子域名

    本文链接:https://www.haomeiwen.com/subject/gtkqjqtx.html