今天体验了下阿里云的centos,起初用的官方推荐的putty方式来管理,全部使用命令行管理起来还是很别扭的.
后来通过百度了解到winscp,有了这个工具,管理起来就爽很多啦.整个centos的管理就跟使用ftp管理空间一样利索了.
下面初步总结下centos中如何新建站点,绑定域名的操作.
1.在此路径下设置目录需要绑定的域名
我们可以参考该文件
中的内容(#号后面为注释说明):
<VirtualHost *:80>#虚拟主机,指定 80 端口
DocumentRoot /alidata/www/default #定义服务器的默认网站根目录位置
ServerName localhost #定义使用 ip 访问
ServerAlias localhost
ErrorLog "/alidata/log/httpd/defaulterror.log" #错误日志
CustomLog "/alidata/log/httpd/default.log" common #访问日志
</VirtualHost>
2.
3.将网站程序通过ftp上传到相应目录即可.
参考网址:
linux常用命令:
http://www.cnblogs.com/zitsing/archive/2012/05/02/2479009.html
centos 6.3 64位php5.4-apache2-mysql5.5-vsftpd.pdf
时间: 2024-11-13 06:59:15