]> 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 be161640ca4c2a6af450b6008ee83be4b95a9774..a5ac157945d22990462b314ca562eef9bb530dec 100644 (file)
@@ -3,19 +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