瀏覽代碼

sample: escape/encapsulate string

Currently if you use the default `source` command in linux and the default `.env` file as declared in the `env.example`, it will fail because of the space in the string.

Using double-quotes around the string will solve this issue.
HannesOberreiter 1 年之前
父節點
當前提交
9f0658dd77
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      env.example

+ 1 - 1
env.example

@@ -74,7 +74,7 @@ TZ=UTC
 #ETHERPAD_PUBLIC_URL=https://etherpad.my.domain/p/
 
 # Name your etherpad instance!
-ETHERPAD_TITLE=Video Chat
+ETHERPAD_TITLE="Video Chat"
 
 # The default text of a pad
 ETHERPAD_DEFAULT_PAD_TEXT="Welcome to Web Chat!\n\n"