Skip to content

Commit

Permalink
chore: adding invalid ssl docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukepolo committed Nov 2, 2024
1 parent f9b0cb8 commit 459176b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export default defineConfig({
],
},
{ text: "Updating", link: "/install/updating" },
{ text: "Debugging", link: "/install/debugging" },
{ text: "Debugging", link: "/debugging", items: [
{ text: "Invalid SSL", link: "/debugging/invalid-ssl" },
] },
],
},
{
Expand Down
File renamed without changes.
9 changes: 9 additions & 0 deletions debugging/invalid-ssl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Invalid SSL

Sometimes the SSL certificates are invalid. This is a common issue with Nginx.

To fix this, you can run the following command to generate new certificates:

```bash
./fix-ssl.sh
```
3 changes: 1 addition & 2 deletions servers/dedicated-servers.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# Dedicated Servers

You can setup dedicated servers in two different ways:
You can setup dedicated servers in two different ways:

1. Using the plugin which will require manual upload of the plugin and configuration of the game server. [Learn more about using the plugin](#using-the-plugin)
2. Using the container which will require a Docker installation and a Docker Compose file. [Learn more about using game server container](#using-the-container)


## Using the Plugin

Download the latest release of the 5Stack Game Server Plugin from the [Releases Page](https://github.com/5stackgg/game-server/releases).
Expand Down
3 changes: 1 addition & 2 deletions servers/plugin-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

The plugin configuration will be located in `<server_path>/game/csgo/addons/counterstrikesharp/configs`.


## Match Configuration Files

Once the plugin has been added, it will download the following configuration files and store them in the cfg directory at `<game-directory>/csgo/cfg`:
Expand All @@ -14,4 +13,4 @@ Once the plugin has been added, it will download the following configuration fil

The base config is always executed first, followed by either the warmup, knife, or live config depending on the current phase of the match.

These configs can be modified to suit your needs.
These configs can be modified to suit your needs.

0 comments on commit 459176b

Please sign in to comment.