diff --git a/README.md b/README.md
index 3e411df..7783400 100644
--- a/README.md
+++ b/README.md
@@ -261,6 +261,7 @@ There are some config settings you need to change in the files below.
 | `errorPath` | `./public/views/error.ejs` | error template file path |
 | `prettyPath` | `./public/views/pretty.ejs` | pretty template file path |
 | `slidePath` | `./public/views/slide.hbs` | slide template file path |
+| `uploadsPath` | `./public/uploads` | uploads directory - needs to be persistent when you use imageUploadType `filesystem` |
 | `sessionName` | `connect.sid` | cookie session name |
 | `sessionSecret` | `secret` | cookie session secret |
 | `sessionLife` | `14 * 24 * 60 * 60 * 1000` | cookie session life |
diff --git a/lib/config/default.js b/lib/config/default.js
index 1b124b3..f88c17b 100644
--- a/lib/config/default.js
+++ b/lib/config/default.js
@@ -45,6 +45,7 @@ module.exports = {
   errorPath: './public/views/error.ejs',
   prettyPath: './public/views/pretty.ejs',
   slidePath: './public/views/slide.ejs',
+  uploadsPath: './public/uploads',
   // session
   sessionName: 'connect.sid',
   sessionSecret: 'secret',
diff --git a/lib/config/index.js b/lib/config/index.js
index 7853dba..b8bf64c 100644
--- a/lib/config/index.js
+++ b/lib/config/index.js
@@ -173,6 +173,7 @@ config.hackmdPath = path.join(appRootPath, config.hackmdPath)
 config.errorPath = path.join(appRootPath, config.errorPath)
 config.prettyPath = path.join(appRootPath, config.prettyPath)
 config.slidePath = path.join(appRootPath, config.slidePath)
+config.uploadsPath = path.join(appRootPath, config.uploadsPath)
 
 // make config readonly
 config = deepFreeze(config)
diff --git a/lib/web/imageRouter/index.js b/lib/web/imageRouter/index.js
index f7e031a..f3c2dec 100644
--- a/lib/web/imageRouter/index.js
+++ b/lib/web/imageRouter/index.js
@@ -16,7 +16,7 @@ imageRouter.post('/uploadimage', function (req, res) {
   form.keepExtensions = true
 
   if (config.imageUploadType === 'filesystem') {
-    form.uploadDir = 'public/uploads'
+    form.uploadDir = config.uploadsPath
   }
 
   form.parse(req, function (err, fields, files) {