commit b54b867

uint  ·  2026-01-27 15:44:34 +0000 UTC
parent 1fc881f
create basic config file
1 files changed,  +40, -0
+40, -0
 1@@ -0,0 +1,40 @@
 2+#	parados.conf
 3+# This is the parados configuration file.
 4+# See parados(1) for more information.
 5+
 6+# Core configuration
 7+#
 8+# Directory containing media files.
 9+#media_dir=/var/media
10+media_dir=/path/to/media
11+
12+# Address to bind the HTTP server to.
13+# Use 0.0.0.0 to listen on all interfaces.
14+#
15+# It is recommended to bind on 127.0.0.1 and
16+# host the WebUI on the same network if you
17+# are using one
18+#
19+#bind_addr=127.0.0.1
20+bind_addr=0.0.0.0
21+
22+# TCP port to listen on.
23+bind_port=8088
24+
25+# Logging
26+#
27+# Enable verbose logging.
28+#verbose_log=false
29+verbose_log=true
30+
31+# Cross-Origin Resource Sharing (CORS)
32+#
33+# Controls which web origins may access the API.
34+#
35+# Empty value disables CORS.
36+# "*" allows all origins (not recommended).
37+# Otherwise, specify a comma separated list of allowed origins.
38+#
39+#cors_origin=http://127.0.0.1:8000
40+cors_origin=
41+