ts-klassen / supdls

suppressed download server
Apache License 2.0
0 stars 0 forks source link

Github Issue Number and Title #26

Open ghost opened 10 months ago

ghost commented 10 months ago

This is a new issue about Github Issue Number and Title.

ts-klassen commented 10 months ago

on file /config/supdls.config, it should say the port number. how can i change the port number to 443?

ghost commented 10 months ago

To change the port number to 443 in the /config/supdls.config file, you need to modify the value of the port option.

Here is the current content of the supdls.config file:

[{supdls, [ {'_', supdls}
%%%%%%%%%% supdls configs start %%%%%%%%%%
  , {port, 8080}
  , {data_path, <<\"\">>}
%%%%%%%%%%  supdls configs end  %%%%%%%%%%
]}].

To change the port number to 443, you can update the port option to 443 like this:

[{supdls, [ {'_', supdls}
%%%%%%%%%% supdls configs start %%%%%%%%%%
  , {port, 443}
  , {data_path, <<\"\">>}
%%%%%%%%%%  supdls configs end  %%%%%%%%%%
]}].

Once you have made the necessary changes, save the file.