aboutsummaryrefslogtreecommitdiffstats
path: root/roles/hastebin/templates/var
diff options
context:
space:
mode:
Diffstat (limited to 'roles/hastebin/templates/var')
-rw-r--r--roles/hastebin/templates/var/lib/hastebin/haste-server/config.js.j232
1 files changed, 32 insertions, 0 deletions
diff --git a/roles/hastebin/templates/var/lib/hastebin/haste-server/config.js.j2 b/roles/hastebin/templates/var/lib/hastebin/haste-server/config.js.j2
new file mode 100644
index 0000000..dcd7668
--- /dev/null
+++ b/roles/hastebin/templates/var/lib/hastebin/haste-server/config.js.j2
@@ -0,0 +1,32 @@
+{
+ "host": "127.0.0.1",
+ "port": {{ hastebin_port }},
+ "keyLength": 10,
+ "maxLength": 400000,
+ "staticMaxAge": 86400,
+ "recompressStaticAssets": true,
+ "logging": [
+ {
+ "level": "verbose",
+ "type": "Console",
+ "colorize": false
+ }
+ ],
+ "keyGenerator": {
+ "type": "random"
+ },
+ "rateLimits": {
+ "categories": {
+ "normal": {
+ "totalRequests": 500,
+ "every": 60000
+ }
+ }
+ },
+ "storage": {
+ "type": "file",
+ "path": "{{ hastebin_data_dir }}"
+ },
+ "documents": {
+ }
+}