server: change default port

This commit is contained in:
King Kévin 2023-01-28 10:15:36 +01:00
parent 411d55647d
commit 2e1c043b4c
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ mysql --user=partdb --password=password --database=partdb < schema.sql
~~~
put the database access information in `credentials.json` and run `server.rb`.
now go to http://localhost:4244 and you are ready to use it.
now go to http://localhost:4245 and you are ready to use it.
the port is defined in `server.rb`.
use a proxy web server to handle the authentication, TLS, compression, ...

View File

@ -27,7 +27,7 @@ PUBLIC = "public"
# folder name for part attachments (in PUBLIC)
ATTACHMENTS = "attachments"
# port for this service
PORT = 4244
PORT = 4245
raise "database information #{CREDENTIALS} do not exist" unless File.file? CREDENTIALS