August 2017

Kunos辦公室

AC的製作公司Kunos,他們的總部就直接設在賽道旁邊
(Vallelunga Circuit ,AC裏面也有這賽道)
剛好找到一個從他們辦公室往外望的影片,Po上來給大家看看

Assetto corsa伺服器架設-進階篇(1) :ac-server-wrapper

ac-server-wrapper (AC Server包裝)
不知有沒人在用這個?
除了自動重啟伺服器之類的基本功能之外
他還支援直接從伺服器下載缺少的內容(車輛、賽道、塗裝等…)
搭配Content Manager使用的話可以直接下載耶
https://github.com/gro-ove/ac-server-wrapper

意外發現CM裏面已經附上了編輯server-wrapper設定檔的介面

把一般Windows程式掛為系統服務

以前用過好幾種方法

後來覺得這個免費又方便
Pirmasoft的RunAsSvc
http://www.pirmasoft.de/cms/freeware/runassvc

下載執行RunAsSvc.exe,會跳出GUI,該填的填一填就行了
設完之後RunAsSvc.exe可以刪掉
要移除service的話就去新增移除程式裏找Pirmasoft RunAsSvc開頭的項目

如果要能偵測crash自動重起,大概就要用付費的

Apache proxy / port forwarding

  • 打開module

    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
  • 設定virtual host

    <VirtualHost *:80>
    ServerName xxx.dabinn.net
    ProxyPass / http://localhost:12345/
    ProxyPassReverse / http://localhost:12345/
    </VirtualHost>
Scroll to Top