如果要使用小内存VPS主机建站必须用最节省资源的方法。本文中采用PHP+Lighttpd+SQLITE架构。
安装SQLite
apt-get install sqlite -y
安装Lighttpd
apt-get install lighttpd -y
安装PHP以及其他组件
apt-get install php5-cgi php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-mhash php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl -y
配置/etc/php5/cgi/php.ini文件
找到cgi.fix_pathinfo字符,然后前面的备注取消,然后检查是不是参数1。
添加站点目录
useradd -d /home/www -m -s /bin/bash www
这里需要给站点添加一个目录,然后把站点文件到时候可以传上去。
修改/etc/lighttpd/lighttpd.conf配置文件
server.modules = (
“mod_access”,
“mod_alias”,
“mod_compress”,
“mod_redirect”,
“mod_rewrite”,
“mod_fastcgi”,
)server.document-root = “/var/www”
server.upload-dirs = ( “/var/cache/lighttpd/uploads” )
server.errorlog = “/var/log/lighttpd/error.log”
server.pid-file = “/var/run/lighttpd.pid”
server.username = “www”
server.groupname = “www”index-file.names = ( “index.php”, “index.html”, “index.htm”, “default.htm”, “ index.lighttpd.html” )
url.access-deny = ( “~”, “.inc” )
static-file.exclude-extensions = ( “.php”, “.pl”, “.fcgi” )
include_shell “/usr/share/lighttpd/use-ipv6.pl”
dir-listing.encoding = “utf-8”
server.dir-listing = “enable”compress.cache-dir = “/var/cache/lighttpd/compress/” compress.filetype = ( “application/x-javascript”, “text/css”, “text/html”, “text/plain” )
include_shell “/usr/share/lighttpd/create-mime.assign.pl”
include_shell “/usr/share/lighttpd/include-conf-enabled.pl”fastcgi.server = ( “.php” => ((
“bin-path” => “/usr/bin/php5-cgi”,
“socket” => “/tmp/php.socket”,
“max-procs” => 1,
“bin-environment” => (
“PHP_FCGI_CHILDREN” => “4”,
“PHP_FCGI_MAX_REQUESTS” => “1000”
),
)))
把上面文件中的文件都替换掉。
修改权限
chown -R www:www /var/log/lighttpd
/etc/init.d/lighttpd restart
修改权限后重启Lighttpd,这样站点环境就安装完毕。后面就可以开始传数据。
#安装Typecho个人网站
已经在小内存VPS服务器中部署好占用资源较小的SQLite数据库、以及轻便Lighttpd WEB环境服务器。下面介绍一下在小内存VPS主机中建站,这里以占用资源较小的Typecho为例,搭建个人博客。
上传Typecho程序
/var/www
这里需要在/var/www目录中,上传TYPECHO程序,可以通过WGET上传,或者直接用SFTP工具上传到对应目录中,然后在线解压文件到根目录。
wget https://github.com/typecho/typecho/releases/download/v1.0-14.10.10-release/1.0.14.10.10.-release.tar.gztar -zxvf 1.0.14.10.10.-release.tar.gz
下载和解压之后,可以用mv命令移动到根目录或者不是很熟悉命令的,那就用SFTP工具进行远程移动。
在线安装Typecho程序
这里解压完毕之后,其实这个时候就可以用需要建站过来的域名解析到当前VPS的IP地址,直接指向就可以。等效完毕之后,就直接用URL在浏览器中打开,可以看到TYPECHO的安装向导。
然后根据向导执行安装。
这里默认直接知道数据库只有SQLITE,然后只需要填写基本的信息或者默认就可以,设置TYPECHO账户的密码。
这样确认之后就安装完毕。这里需要解决一个问题,安装时候如果看到”对不起,无法连接数据库,请先检查数据库配置再继续进行安装”错误提示,表示在www目录中没有写入权限,需要给予写入权限。
这样就可以安装完毕。
完成Typecho程序的安装
Enjoy!