18143453325 在线咨询 在线咨询
18143453325 在线咨询
所在位置: 首页 > 营销资讯 > 建站知识 > 【Linux】Nginx 域名解析

【Linux】Nginx 域名解析

时间:2023-01-31 14:32:01 | 来源:建站知识

时间:2023-01-31 14:32:01 来源:建站知识

接上篇文章

环境安装成功之后,要配置域名解析

假设域名: www.test.com




1 命令输入,查找nginx配置文件路径

find / -name nginx.conf2 打开这个目录。

vim /etc/nginx/nginx.conf插入以下

# 包含所有的虚拟主机的配置文件include /etc/nginx/vhosts/*.conf;保存退出




3 在 /etc/nginx 下创建 vhosts 目录

mkdir /etc/nginx/vhosts4 创建名字为 www.test.com.conf 文件。并复制以下内容进去

server { listen 80; server_name www.test.com; location / { root /usr/share/nginx/html/www.test.com/; index index.php index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html/www.test.com; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ .php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html/www.test.com/$fastcgi_script_name; include fastcgi_params; } location ~ /.ht { deny all; }}


保存并重启nginx

service nginx restart


5 进入nginx目录: /usr/share/nginx/html

创建名字为 www.test.com 的文件夹 并创建 index.php 文件。输入测试内容

<?phpecho "test";?>


6 浏览器访问你得域名















关键词:

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭