This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:matrix-org/synapse into develop
- Loading branch information
Showing
3 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Update documentation and variables in user contributed systemd reference file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Setup Synapse with Systemd | ||
This is a setup for managing synapse with a user contributed systemd unit | ||
file. It provides a `matrix-synapse` systemd unit file that should be tailored | ||
to accommodate your installation in accordance with the installation | ||
instructions provided in [installation instructions](../../INSTALL.md). | ||
|
||
## Setup | ||
1. Under the service section, ensure the `User` variable matches which user | ||
you installed synapse under and wish to run it as. | ||
2. Under the service section, ensure the `WorkingDirectory` variable matches | ||
where you have installed synapse. | ||
3. Under the service section, ensure the `ExecStart` variable matches the | ||
appropriate locations of your installation. | ||
4. Copy the `matrix-synapse.service` to `/etc/systemd/system/` | ||
5. Start Synapse: `sudo systemctl start matrix-synapse` | ||
6. Verify Synapse is running: `sudo systemctl status matrix-synapse` | ||
7. *optional* Enable Synapse to start at system boot: `sudo systemctl enable matrix-synapse` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters