這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
goread 安裝配置
系統ubuntu 13.04
web伺服器apache
https://github.com/mjibson/goread
安裝步驟
這個就不詳細說了,可以看他的README,只大概說一下
1.安裝python2.7並確保其在PATH中
2.安裝Git,Mercurial並確保git and hg 在PATH中
3.安裝GO App Engine SDK並確保其在PATH中,這個的簡單說一下,把zip包下載下來,然後解壓到一個目錄,然後把這個目錄加入到PATH中即可.
4.使用命令 goapp get -d github.com/mjibson/goread 下載goread,並把下載的目錄加到GOPATH中
5.cd $GOPATH/src/github.com/mjibson/goread
6.app.sample.yaml重新命名為app.yaml,settings.go.dist重新命名為settings.go
7.goapp serve 運行
8.現在就可以通過http://localhost:8080來訪問了
9.設定本地區名,通過網域名稱訪問
#cd /etc/apache/site-available #cp default goread.local #sudo vi goread.local <VirtualHost *:80> ServerName goread.local #ProxyPreserveHost On ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / http://127.0.0.1:8080/ ProxyPassReverse / http://127.0.0.1:8080/ </VirtualHost>
說明
1.apache日誌報錯:
[warn] proxy: No protocol handler was valid for t he URL /. If you are using a DSO version of mod_proxy, make sure the proxy s ubmodules are included in the configuration using LoadModule.
解決:
sudo a2enmod proxy sudo a2enmod proxy_http sudo a2enmod proxy_connect
重啟apache
sudo /etc/init.d/apache restart
- 使用命令goapp get -d github.com/mjibson/goread下載goread過程中,可能會因為網路的原因產生依賴package沒能下載成功的情況,出現這種情況就需要重新多試幾次.