gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

web.md (689B)


      1 # Web
      2 
      3 ## Settings
      4 
      5 ```yaml
      6 ######################
      7 ##### WEB CONFIG #####
      8 ######################
      9 
     10 # Config pertaining to templating and serving of web pages/email notifications and the like
     11 
     12 # String. Directory from which gotosocial will attempt to load html templates (.tmpl files).
     13 # Examples: ["/some/absolute/path/", "./relative/path/", "../../some/weird/path/"]
     14 # Default: "./web/template/"
     15 web-template-base-dir: "./web/template/"
     16 
     17 # String. Directory from which gotosocial will attempt to serve static web assets (images, scripts).
     18 # Examples: ["/some/absolute/path/", "./relative/path/", "../../some/weird/path/"]
     19 # Default: "./web/assets/"
     20 web-asset-base-dir: "./web/assets/"
     21 ```