Compare commits

...

2 Commits

2 changed files with 20 additions and 17 deletions

View File

@ -6,6 +6,7 @@ jobs:
Build-All:
runs-on: ubuntu-latest
container:
image: debian:bookworm
valid_volumes: ['/opt/keys']
volumes:
- /opt/keys:/opt/keys

View File

@ -844,23 +844,25 @@ loadSettings()
httpd.set_http_redirect(settings.http_redirect);
}
httpd.all('/app/socket', app.socket);
let port = httpd.start(tildefriends.http_port);
if (tildefriends.args.out_http_port_file) {
print('Writing the port file.');
File.writeFile(
tildefriends.args.out_http_port_file,
port.toString() + '\n'
)
.then(function (r) {
print(
'Wrote the port file:',
tildefriends.args.out_http_port_file,
r
);
})
.catch(function () {
print('Failed to write the port file.');
});
if (tildefriends.http_port > 0 || tildefriends.args.out_http_port_file) {
let port = httpd.start(tildefriends.http_port);
if (tildefriends.args.out_http_port_file) {
print('Writing the port file.');
File.writeFile(
tildefriends.args.out_http_port_file,
port.toString() + '\n'
)
.then(function (r) {
print(
'Wrote the port file:',
tildefriends.args.out_http_port_file,
r
);
})
.catch(function () {
print('Failed to write the port file.');
});
}
}
if (tildefriends.https_port) {