(6)用公网IP建站

1. 保证自己拥有公网IP或者通过路由的 端口转发能够访问到内网目标机(raspberry)的80端口,如果想要有一个免费域名的话,到www.noip.com上注册一个域名xxx.ddns.net,并且添加一个Host即将自己的IP和域名绑定。
2. 在raspberry上安装lighttpd,直接wget  http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.35.tar.gz 然后解压,configure, make, make install安装。
3. 按照 http://redmine.lighttpd.net/projects/lighttpd/wiki/TutorialConfiguration 写一个lighttpd配置文件,
server.document-root = "/var/www/xxx_ddns_com/" 
server.port = 80
server.username = "www" 
server.groupname = "www" 

mimetype.assign = (
  ".html" => "text/html", 
  ".txt" => "text/plain",
  ".jpg" => "image/jpeg",
  ".png" => "image/png" 
)
static-file.exclude-extensions = ( ".fcgi", ".php", ".rb", "~", ".inc" )
index-file.names = ( "index.html" )

保存到/etc/lighttpd.conf
mkdir -p /var/www/xxx_ddns_com
groupadd www
useradd -g www www
chown -R www:www /var/www
然后在/var/www/xxx_ddns_com/下面建立一个index.html,写一些html内容。
最后启动lighttpd:lighttpd -f /etc/lighttpd.conf

 

你可能感兴趣的:(lighttpd,域名,建站,B+,raspberry)