Skip to content

Commit 759f8b2

Browse files
committed
Update all discord links to use the linuxserver.io redirect
1 parent fa7cc77 commit 759f8b2

4 files changed

Lines changed: 19 additions & 21 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The team resides primarily in our Discord server. We also have a forum if chat i
88

99
| Where | Link |
1010
| :--- | :--- |
11-
| Discord | [https://discord.gg/YWrKVTn](https://discord.gg/YWrKVTn) |
11+
| Discord | [https://linuxserver.io/discord](https://linuxserver.io/discord) |
1212
| Forum | [https://discourse.linuxserver.io](https://discourse.linuxserver.io) |
1313

1414
For those interested in our CI environment via Jenkins: [https://ci.linuxserver.io/](https://ci.linuxserver.io/)

docs/general/docker-compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Defining the containers running on your server as code is a core tenet of a "Dev
122122

123123
## Support Requests
124124

125-
If you would like to request support, you can do so on [our discord server](https://discord.gg/linuxserver) or [our forum](https://discourse.linuxserver.io/). When you do so, please provide all the necessary information like the server and platform info, docker container log and the compose yaml.
125+
If you would like to request support, you can do so on [our discord server](https://linuxserver.io/discord) or [our forum](https://discourse.linuxserver.io/). When you do so, please provide all the necessary information like the server and platform info, docker container log and the compose yaml.
126126

127127
If your compose yaml makes use of .env files, please post an output of `docker compose config` or `docker compose config -f /path/to/compose.yml` for the entire yaml, or `docker compose config <service name>` for a single service, as it will automatically replace the environment variables with their actual values.
128128

docs/general/swag.md

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SWAG
22

3-
The goal of this guide is to give you ideas on what can be accomplished with the [LinuxServer SWAG docker image](https://hub.docker.com/r/linuxserver/swag) and to get you started. We will explain some of the basic concepts and limitations, and then we'll provide you with common examples. If you have further questions, you can ask on [our forum](https://discourse.linuxserver.io/) or join our Discord for conversations: <https://discord.gg/YWrKVTn>
3+
The goal of this guide is to give you ideas on what can be accomplished with the [LinuxServer SWAG docker image](https://hub.docker.com/r/linuxserver/swag) and to get you started. We will explain some of the basic concepts and limitations, and then we'll provide you with common examples. If you have further questions, you can ask on [our forum](https://discourse.linuxserver.io/) or join our [Discord](https://linuxserver.io/discord) for conversations.
44

55
## Introduction
66

@@ -1222,37 +1222,35 @@ This error means that nginx can't talk to the application. There is a few common
12221222

12231223
- Delete it, and restart the container to have it regenerate
12241224
- Manually set the content(we wont override it)
1225-
1225+
12261226
Here are a few troubleshooting steps:
12271227

12281228
- Try to ping the container from the swag container:
12291229
`docker exec swag ping <container name>` (If your swag container isn't named `swag`, replace `swag` with the swag container's name).
12301230
- If this doesn't work:
12311231
- Check if the container is actually running
1232-
- check if both swag and the container in question are on the same container network.
1233-
- try to find the ip of the container on the network shared with swag (e.g. `docker inspect <container name>`) and try to ping that from swag (`docker exec swag ping <container ip>`)
1234-
- If this succeeds, you have an issue with name resolution inside docker networks
1235-
- If this fails, you either have an issue with docker networking in general or the containers don't share a common network.
1232+
- Check if both swag and the container in question are on the same container network.
1233+
- Try to find the ip of the container on the network shared with swag (e.g. `docker inspect <container name>`) and try to ping that from swag (`docker exec swag ping <container ip>`)
1234+
- If this succeeds, you have an issue with name resolution inside docker networks
1235+
- If this fails, you either have an issue with docker networking in general or the containers don't share a common network.
12361236
- If this works:
12371237
- Try to fetch the web interface from the swag container:
1238-
`docker exec swag curl http(s)://<container name>:<application port>` (make sure that this matches whatever is in your proxy conf)
1239-
- If this works: Check your proxy conf again. Probably something (protocol, container name, port) is wrong there
1240-
- If this doesn't work:
1241-
- Check the startup log of the application (`docker logs <container name>`).
1242-
- Did it start sucessfully/Did it fail for some reason?
1243-
- Many applications print what endpoint they are running on there. Check if this matches the values in your proxy conf and the ones used for curl
1244-
- Check if the interface the application listens on is correct. Usually this should be 0.0.0.0, but the ip the container has on the network shared with swag should also be fine.
1245-
If only 127.0.0.1 or another unrelated IP is listened there, this could be the issue
1246-
- Check what protocol and port the application actually listens at.
1247-
Are your sure you've used the right values?
1238+
`docker exec swag curl http(s)://<container name>:<application port>` (make sure that this matches whatever is in your proxy conf)
1239+
- If this works: Check your proxy conf again. Probably something (protocol, container name, port) is wrong there
1240+
- If this doesn't work:
1241+
- Check the startup log of the application (`docker logs <container name>`).
1242+
- Did it start sucessfully/Did it fail for some reason?
1243+
- Many applications print what endpoint they are running on there. Check if this matches the values in your proxy conf and the ones used for curl
1244+
- Check if the interface the application listens on is correct. Usually this should be 0.0.0.0, but the IP the container has on the network shared with swag should also be fine. If only 127.0.0.1 or another unrelated IP is listed there, this could be the issue.
1245+
- Check what protocol and port the application actually listens at. Are your sure you've used the right values?
12481246

12491247
## Final Thoughts
12501248

1251-
This image can be used in many different scenarios as it is a full fledged web server with some bells and whistles added. The above examples should be enough to get you started. For more information, please refer to the official documentation on either [Github](https://github.com/linuxserver/docker-swag/blob/master/README.md) or [Docker Hub](https://hub.docker.com/r/linuxserver/swag). If you have questions or issues, or want to discuss and share ideas, feel free to visit our discord: <https://discord.gg/YWrKVTn>
1249+
This image can be used in many different scenarios as it is a full fledged web server with some bells and whistles added. The above examples should be enough to get you started. For more information, please refer to the official documentation on either [Github](https://github.com/linuxserver/docker-swag/blob/master/README.md) or [Docker Hub](https://hub.docker.com/r/linuxserver/swag). If you have questions or issues, or want to discuss and share ideas, feel free to visit our [Discord server](https://linuxserver.io/discord).
12521250

12531251
### How to Request Support
12541252

1255-
As you can see in this article, there are many different configurations, therefore we need to understand your exact setup before we can provide support. If you encounter a bug and confirm that it's a bug, please report it on [our github thread](https://github.com/linuxserver/docker-swag). If you need help with setting it up, [join our discord](https://discord.gg/YWrKVTn) and upload the following info to a service like pastebin and post the link:
1253+
As you can see in this article, there are many different configurations, therefore we need to understand your exact setup before we can provide support. If you encounter a bug and confirm that it's a bug, please report it on [our github thread](https://github.com/linuxserver/docker-swag). If you need help with setting it up, [join our discord](https://linuxserver.io/discord) and upload the following info to a service like pastebin and post the link:
12561254

12571255
- Docker run/create or compose yml you used
12581256
- Full docker log (`docker logs swag`)

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ extra:
4242
- icon: fontawesome/solid/otter
4343
link: https://linuxserver.io
4444
- icon: fontawesome/brands/discord
45-
link: https://discord.gg/YWrKVTn
45+
link: https://linuxserver.io/discord
4646
- icon: fontawesome/brands/discourse
4747
link: https://discourse.linuxserver.io
4848
- icon: fontawesome/brands/github

0 commit comments

Comments
 (0)