Open ghost opened 10 months ago
on file /config/supdls.config
, it should say the port number. how can i change the port number to 443?
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.
This is a new issue about Github Issue Number and Title.