]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - config/default.yaml
Client: avoid loading javascript ressource over the network
[github/Chocobozzz/PeerTube.git] / config / default.yaml
index 87b72aa3b40ad015d593482b84aa45a0773f25e0..a5ac157945d22990462b314ca562eef9bb530dec 100644 (file)
@@ -3,20 +3,28 @@ listen:
 
 webserver:
   https: false
-  host: 'localhost'
+  hostname: 'localhost'
   port: 9000
 
+# Your database name will be "peertube"+database.suffix
 database:
-  host: 'localhost'
-  port: 27017
-  suffix: '-dev'
+  hostname: 'localhost'
+  port: 5432
+  suffix: '_dev'
+  username: 'peertube'
+  password: 'peertube'
 
 # From the project root directory
 storage:
   certs: 'certs/'
-  uploads: 'uploads/'
+  videos: 'videos/'
   logs: 'logs/'
+  previews: 'previews/'
   thumbnails: 'thumbnails/'
+  torrents: 'torrents/'
 
-network:
-  friends: []
+admin:
+  email: 'admin@example.com'
+
+signup:
+  enabled: false