互联网科技

linux下如何添加子域名

2019-01-21  本文已影响4人  PM回忆录

本文目录:

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文件中即可。

上一篇下一篇

猜你喜欢

热点阅读