当前位置:   article > 正文

实战:部署一个Web站点(适合新手)_成功部署一个web网站

成功部署一个web网站

[root@web01 ~]# cd /application/nginx/conf/ #进入nginx配置目录

[root@web01 conf]# diff nginx.conf nginx.conf.default #用diff比对发现conf下的所有文件都已经备份

[root@web01 conf]# egrep -v "^$|#" nginx.conf.default >nginx.conf #去除配置文件里面的$和#注释信息

[root@web01 conf]# vim nginx.conf #进入配置文件

        server_name  www.etiantian.org;  #在12行配置站点

[root@web01 conf]# /application/nginx/sbin/nginx -t #检查语法

nginx: the configuration file /application/nginx-1.6.3//conf/nginx.conf syntax is ok

nginx: configuration file /application/nginx-1.6.3//conf/nginx.conf test is successful

[root@web01 conf]# /application/nginx/sbin/nginx -s reload #平滑重启

[root@web01 conf]# cd /application/nginx/html/

[root@web01 html]# rm -f index.html

[root@web01 html]#vim index.html

<html>

<head>

<title>ר1</title>

</head>

<body>

Ϊѧϰ

<table border=1>

<tr>

<td></td>

<td></td>

</tr>

<tr>

<td>001</td>

<td>1</td>

</tr>

<tr>

<td>002</td>

<td>2</td>

</tr>

</table>

<a href="https://blog.csdn.net/qq_41816540" target=_blank><img src="ceshi.jpg">ȷa>

</body>

</html>

###注:点击确认会跳转到https://blog.csdn.net/qq_41816540网页,<img src="ceshi.jpg”>插入的图片名,前题是图片已经上传到/application/nginx/html目录下

 

在客户端打开浏览器输入服务器端IP,查看效果

 

 

利用Windows系统解析服务器内容:

1. 运行-->drivers-->etc-->修改hosts文件-->10.0.0.8 www.etiantian.org #地址+域名(模拟局域网DNS)

2. 查看是否生效:运行-->cmd-->ping www.etiantian.org  #查看地址是否是10.0.0.8

3. 浏览器访问:www.etiantian.org

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/174975
推荐阅读
相关标签
  

闽ICP备14008679号