File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed
Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 11import type { Config } from "@/types/config" ;
22
33const config : Config = {
4- // Customize the port Interstellar runs on (Default: 8080)
5- port : 8080 ,
4+ // Server Configuration
5+ port : 8080 , // The port on which Interstellar runs (Default: 8080)
66
7- // Protect your Instance with logins (Optional)
7+ // Authentication Configuration (Optional)
88 auth : {
9- challenge : false , // Password protection (Default: False)
9+ // Enable password protection for your instance.
10+ // Set challenge to true to require users to log in.
11+ challenge : false ,
12+
13+ // Format: username: "password",
14+ // IMPORTANT: Replace default credentials before deployment
1015 users : {
11- interstellar : "password" , // Add usernames and passwords here
16+ interstellar : "password" ,
1217 } ,
1318 } ,
1419} ;
You can’t perform that action at this time.
0 commit comments