commit 19160840722e01e01a2c360c5106b705bb6fa847
parent 52013c1fe74496eeb4c8b106588f0acad9e9ee2e
Author: Hugo Soucy <hugo@soucy.cc>
Date: Sat, 29 Dec 2018 22:52:51 -0500
Move the mimetypes table to the app config
Diffstat:
1 file changed, 2 insertions(+), 11 deletions(-)
diff --git a/config.lua b/config.lua
@@ -1,8 +1,9 @@
+
--
-- Website Configuration File
--
-local siteconfig = {
+return {
domainname = "hugo.soucy.cc",
url = "https://hugo.soucy.cc",
urldev = "http://localhost:8181",
@@ -55,14 +56,6 @@ local siteconfig = {
plugins = "/plugins",
},
- -- Accepted mime types of the non-textual content
- mimetypes = {
- "image/svg+xml",
- "image/jpeg",
- "image/png",
- "application/pdf",
- },
-
-- feedtypes = {
-- atom = {
-- name = "feed.atom",
@@ -76,5 +69,3 @@ local siteconfig = {
metaskeyorder = {"bridgy","cite","citeurl","content","date","datetime","description","id","keywords","permalink","shortlink","template","title"},
}
-
-return siteconfig