Skip to content

Commit 667d38c

Browse files
committed
doc(server): use https
1 parent 0888003 commit 667d38c

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

server/INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ How to build and install canary
22
===============================
33

44
This package does not provide an automated way to build or install the server
5-
except using [`npm`](http://npmjs.org/package/ontime.js) because
6-
`canary-server` is intended to runs on top of [`node.js`](http://nodejs.org).
5+
except using [`npm`](https://npmjs.org/package/ontime.js) because
6+
`canary-server` is intended to runs on top of [`node.js`](https://nodejs.org).
77
If you have `node.js` in your system,
88

99
npm install canary

server/LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ canary: a music streaming server/client
44
Copyright (C) 2015-2024 by Woong Jun.
55

66
This package is a music streaming server and its companion iOS client that run
7-
upon [DAAP](http://en.wikipedia.org/wiki/Digital_Audio_Access_Protocol).
7+
upon [DAAP](https://en.wikipedia.org/wiki/Digital_Audio_Access_Protocol).
88

99
Permission is hereby granted, free of charge, to any person obtaining a copy of
1010
this software and associated documentation files (the "Software"), to deal in

server/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ canary: a music streaming server/client
33

44
`canary` is a package of a music streaming server and its companion iOS client
55
that run upon
6-
[DAAP](http://en.wikipedia.org/wiki/Digital_Audio_Access_Protocol). Employing
6+
[DAAP](https://en.wikipedia.org/wiki/Digital_Audio_Access_Protocol). Employing
77
DAAP for streaming and
8-
[mDNS](http://www.multicastdns.org)/[DNS-SD](http://www.dns-sd.org) for service
9-
advertisement let `canary` work perfectly with
8+
[mDNS](https://www.multicastdns.org)/[DNS-SD](https://www.dns-sd.org) for
9+
service advertisement let `canary` work perfectly with
1010
[iTunes](https://www.apple.com/itunes/).
1111

12-
![running canary and iTunes](http://code.woong.org/common/files/canary-run.png)
12+
![running canary and iTunes](https://code.woong.org/common/files/canary-run.png)
1313

1414
This document explains the server. See the files in the `client` directory for
1515
the client.
@@ -32,7 +32,7 @@ but does not support yet:
3232
The initial scan of songs is fairly fast thanks to high performance of the
3333
[`music-metadata`](https://www.npmjs.com/package/music-metadata) module; about 7 mins
3434
with 5,000+ songs on my [Gentoo](https://www.gentoo.org/) machine with
35-
[Intel Atom D525](http://ark.intel.com/products/49490/Intel-Atom-Processor-D525-1M-Cache-1_80-GHz),
35+
[Intel Atom D525](https://ark.intel.com/products/49490/Intel-Atom-Processor-D525-1M-Cache-1_80-GHz),
3636
4GB RAM and a 5400-rpm HDD. Once the database has been built, rescanning is
3737
even faster; about 1 min on the same condition. The server remembers the mtime,
3838
modification time of files and reads only added or modified files.
@@ -48,7 +48,7 @@ started to support a stand-alone DB,
4848
depend on MongoDB, however, if a huge number of songs need to be
4949
served, because NeDB stores all its indexed data on memory.
5050

51-
`canary` can run with [`avahi`](http://www.avahi.org/) or
51+
`canary` can run with [`avahi`](https://www.avahi.org/) or
5252
[`dns-sd`](https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/dns-sd.1.html),
5353
or launch its own instance of mDNS/DNS-SD service implemented in pure
5454
JavaScript ([`node-mdns-js`](https://www.npmjs.com/package/mdns-js)) when you
@@ -213,4 +213,4 @@ needs many improvements that include, but not limited to:
213213
issues, see the accompanying `LICENSE.md` file.
214214

215215
If you have a question or suggestion, do not hesitate to contact me via email
216-
(woong.jun at gmail.com) or web (http://code.woong.org/).
216+
(woong.jun at gmail.com) or web (https://code.woong.org/).

server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"author": {
66
"name": "Woong Jun",
77
"email": "woong.jun@gmail.com",
8-
"url": "http://code.woong.org/"
8+
"url": "https://code.woong.org/"
99
},
1010
"contributors": [],
11-
"homepage": "http://code.woong.org/canary",
11+
"homepage": "https://code.woong.org/canary",
1212
"repository": {
1313
"type": "git",
1414
"url": "git+https://github.com/mycoboco/canary.git"

server/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function usage() {
106106
' --help display this help and exit\n' +
107107
' --version display version information and exit\n',
108108
);
109-
console.log('For bug reporting instructions, please see: <http://code.woong.org/>.');
109+
console.log('For bug reporting instructions, please see: <https://code.woong.org/>.');
110110
process.exit(); // cannot use exit()
111111
}
112112

0 commit comments

Comments
 (0)