「PttWeb」:修訂間差異
跳至導覽
跳至搜尋
(未顯示同一使用者於中間所作的 18 次修訂) | |||
第10行: | 第10行: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
sudo apt install -y build-essential golang golang-goprotobuf-dev; sudo apt clean | sudo apt install -y build-essential golang golang-goprotobuf-dev libgflags-dev libgrpc++-dev libgrpc-dev protobuf-compiler-grpc; sudo apt clean | ||
</syntaxhighlight> | </syntaxhighlight> | ||
第22行: | 第22行: | ||
編譯完成後會在<code>~/go/bin</code>裡面看到執行檔。 | 編譯完成後會在<code>~/go/bin</code>裡面看到執行檔。 | ||
== 設定 == | |||
PttWeb需要一個<code>config.json</code>,設定可以參考<code>config.go</code>,最少需要指定這四個參數: | |||
<syntaxhighlight lang="json"> | |||
{ | |||
"Bind": ["tcp:127.0.0.1:8000"], | |||
"BoarddAddress": "127.0.0.1:3000", | |||
"MemcachedAddress": "127.0.0.1:11211", | |||
"TemplateDirectory": "/home/bbs/templates" | |||
} | |||
</syntaxhighlight> | |||
其中<code>/home/bbs/templates/</code>內需要有這些檔案: | |||
<syntaxhighlight lang="text"> | |||
askover18.html | |||
bbsarticle.html | |||
bbsindex.html | |||
captcha.html | |||
classlist.html | |||
common.html | |||
error.html | |||
layout.html | |||
manarticle.html | |||
manindex.html | |||
notfound.html | |||
</syntaxhighlight> | |||
其中<code>layout.html</code>內需要有<code>ROOT</code>: | |||
<syntaxhighlight lang="smarty"> | |||
{{- define "ROOT" -}} | |||
{{- end -}} | |||
</syntaxhighlight> | |||
而<code>bbsarticle.html</code>內: | |||
<syntaxhighlight lang="smarty"> | |||
{{- define "ROOT" -}} | |||
<!DOCTYPE html> | |||
<html> | |||
<head> | |||
<meta charset="utf-8"/> | |||
</head> | |||
<body> | |||
<pre> | |||
{{ .Content }} | |||
</pre> | |||
</body> | |||
</html> | |||
{{- end -}} | |||
</syntaxhighlight> | |||
== 執行 == | |||
用以下指令執行: | |||
<syntaxhighlight lang="bash"> | |||
~/go/bin/pttweb -conf ~/pttweb/config.json | |||
</syntaxhighlight> | |||
== 開機設定 == | |||
<syntaxhighlight lang="bash"> | |||
@reboot ~/pttbbs/daemon/boardd/boardd -l 127.0.0.1:3000 > /tmp/boardd.log 2>&1 | |||
@reboot ~/go/bin/pttweb -conf ~/pttweb/config.json > /tmp/pttweb.log 2>&1 | |||
</syntaxhighlight> | |||
== 相關連結 == | == 相關連結 == | ||
* [[PttBBS]] | * [[PttBBS]] | ||
== 參考資料 == | |||
{{Reflist|2}} | |||
== 外部連結 == | == 外部連結 == |
於 2023年9月4日 (一) 17:39 的最新修訂
PttWeb是PttBBS的網頁界面。
概要
PttWeb是一個Golang寫的界面,透過gRPC跟PttBBS的伺服器溝通。
相依性套件
先安裝需要的套件:
sudo apt install -y build-essential golang golang-goprotobuf-dev libgflags-dev libgrpc++-dev libgrpc-dev protobuf-compiler-grpc; sudo apt clean
編譯
這邊是參考.travis-ci.yml
的方式編譯[1]:
export GOPATH="$HOME/go"; go get -u github.com/ptt/pttweb; go get google.golang.org/grpc; go get -u github.com/golang/protobuf/{proto,protoc-gen-go}; make -C $GOPATH/src/github.com/ptt/pttweb/proto; go get -u -t -f github.com/ptt/pttweb/...
編譯完成後會在~/go/bin
裡面看到執行檔。
設定
PttWeb需要一個config.json
,設定可以參考config.go
,最少需要指定這四個參數:
{
"Bind": ["tcp:127.0.0.1:8000"],
"BoarddAddress": "127.0.0.1:3000",
"MemcachedAddress": "127.0.0.1:11211",
"TemplateDirectory": "/home/bbs/templates"
}
其中/home/bbs/templates/
內需要有這些檔案:
askover18.html
bbsarticle.html
bbsindex.html
captcha.html
classlist.html
common.html
error.html
layout.html
manarticle.html
manindex.html
notfound.html
其中layout.html
內需要有ROOT
:
{{- define "ROOT" -}}
{{- end -}}
而bbsarticle.html
內:
{{- define "ROOT" -}}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<pre>
{{ .Content }}
</pre>
</body>
</html>
{{- end -}}
執行
用以下指令執行:
~/go/bin/pttweb -conf ~/pttweb/config.json
開機設定
@reboot ~/pttbbs/daemon/boardd/boardd -l 127.0.0.1:3000 > /tmp/boardd.log 2>&1
@reboot ~/go/bin/pttweb -conf ~/pttweb/config.json > /tmp/pttweb.log 2>&1
相關連結
參考資料
- ↑ pttweb/.travis.yml at master · ptt/pttweb. [2020-04-09].