diff options
| author | zousar <[email protected]> | 2023-10-11 14:02:34 -0600 |
|---|---|---|
| committer | zousar <[email protected]> | 2023-10-11 14:02:34 -0600 |
| commit | e0b1035b679e0d88c34bea5b79cdd1230295308e (patch) | |
| tree | 6facc9c80553c3c510ceb1a5ecf0d484819127a7 /src/zenserver/objectstore/objectstore.h | |
| parent | added explicit implementation of IoHash equals operator (#464) (diff) | |
| download | zen-e0b1035b679e0d88c34bea5b79cdd1230295308e.tar.xz zen-e0b1035b679e0d88c34bea5b79cdd1230295308e.zip | |
Change default port to 8558
Changes the default port without altering config for shared instances.
Diffstat (limited to 'src/zenserver/objectstore/objectstore.h')
| -rw-r--r-- | src/zenserver/objectstore/objectstore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/objectstore/objectstore.h b/src/zenserver/objectstore/objectstore.h index eaab57794..0fec59b03 100644 --- a/src/zenserver/objectstore/objectstore.h +++ b/src/zenserver/objectstore/objectstore.h @@ -21,7 +21,7 @@ struct ObjectStoreConfig std::filesystem::path RootDirectory; std::vector<BucketConfig> Buckets; - uint16_t ServerPort{1337}; + uint16_t ServerPort{8558}; }; class HttpObjectStoreService final : public zen::HttpService |