twitch-bot/docs/content/getting-started/external-access.md

110 lines
3.3 KiB
Markdown
Raw Normal View History

---
title: "External Access"
weight: 4
---
{{< lead >}}
In order to be able to access the bot through a web-browser and make configuration changes using the web-interface we need to securely expose the interface to the internet.
{{< /lead >}}
{{< alert style="info" >}}
In case you did the installation of the bot on your **local machine**, skip this part. You can access the web-interface at `http://localhost:3000/` after you've continued with the [Configuration]({{< ref "configuration.md" >}}).
{{< /alert >}}
## Using nginx
In order not to make this a quite long and extensive tutorial we'll use two tutorials of DigitalOcean to aid us:
- [DigitalOcean: How To Install Nginx on Ubuntu 20.04](https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-20-04)
- [DigitalOcean: How To Secure Nginx with Let's Encrypt on Ubuntu 20.04](https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-20-04)
We will follow the first one up to step 4, and omit step 5 and 6. These are not required for us as they are configuring a locally hosted website which we don't want to do for the bot. Instead of the suggested `/etc/nginx/sites-available/your_domain` file in the first tutorial we will create a `/etc/nginx/sites-available/twitch-bot.conf` file with the following content:
```nginx
server {
listen 80;
listen [::]:80;
server_name twitch-bot.mydomain.com;
location / {
add_header X-Robots-Tag noindex;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:3000/;
}
}
```
Make sure to replace the `server_name` directive with the (sub-)domain you want the bot to be available at.
After creating the file we'll enable it similar to the tutorial:
```console
# Link the configuration to the enabled ones
$ sudo ln -s /etc/nginx/sites-available/twitch-bot.conf /etc/nginx/sites-enabled/
# Check whether there are any errors
$ sudo nginx -t
# If there were no errors, restart the nginx service
$ sudo systemctl restart nginx
```
## Using Apache2
```console
# Install Apache2
$ sudo apt update
$ sudo apt install apache2
# Enable required modules
$ sudo a2enmod proxy proxy_wstunnel proxy_http
```
Next create a configuration file (`/etc/apache2/sites-available/twitch-bot.conf`) for proxying to the bot:
```apacheconf
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName twitch-bot.mydomain.com
Options Indexes FollowSymLinks
SSLProxyEngine on
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:3000/
ProxyPassReverse / http://127.0.0.1:3000/
RewriteEngine on
RewriteCond %{HTTP:Upgrade} websocket [NC]
RewriteCond %{HTTP:Connection} upgrade [NC]
RewriteRule ^/?(.*) "ws://127.0.0.1:3000/$1" [P,L]
ProxyAddHeaders On
RequestHeader set X-Forwarded-Proto "https"
# SSL Certificates goes here ...
</VirtualHost>
</IfModule>
```
Finally enable the new site and restart Apache2 to enable the new configuration:
```console
$ sudo a2ensite twitch-bot
$ sudo systemctl restart apache2
```