Created for Dynmap on Linux Instructions

BlackAsLight 2021-09-25 00:38:07 +10:00
parent fa81f958b3
commit 2a787f082c

@ -0,0 +1,31 @@
If you'd like to use Nginx to HTTPS Dynmap's connection, omit Dynmap's port, or use your own domain instead of the IP then:
1. Install Nginx. It is best to look up how to do this bit, but for Unbuntu people it's `sudo apt install nginx`.
2. Turn Nginx on and set to start at launch:
```
sudo systemctl start nginx
sudo systemctl enable nginx
```
3. Go to Nginx's configuration file `cd /etc/nginx/sites-available/` and open the default config file `sudo vi default`.
4. Replace it's contents with:
```
server {
server <domain.com>
listen 80;
location / {
proxy_pass http://localhost:8123/;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
```
- Click `i` to start editing the file, `esc` to stop editing, then `:x` to save and exit the file. `:q` to exit, and `:q!` to exit without saving.
- If you have your own domain then replace `<domain.com>` with your own domain otherwise omit the line from the config. If you put your own domain here then Dynmap will only respond to people who go through the domain and not the IP.
5. Test the changes to the config you've made `sudo service nginx configtest`.
6. And if you get no errors then restart Nginx `sudo service nginx restart`.
7. At this point the port can be omitted when using the link. If you added your own domain to the config then make sure you've gone to your domains DNS settings and added an `A` record with host `@` and pointed to the server's IP.
- Make sure port 80 is open in the firewall (and [port forwarded](https://portforward.com/) on the router if applicable).
8. Now to HTTPS your connection go to [CertBot](https://certbot.eff.org/instructions), select Nginx as the software, and select your OS in the system drop-down menu. Their website will provide you with a step by step guide on how to HTTPS your Nginx Reverse Proxy.
- Make sure port 443 is open in the firewall (and [port forwarded](https://portforward.com/) on the router if applicable).
*Note: Nginx as a Reverse Proxy should be run on the same machine that Dynmap is running on. If this is not possible for you then you can consider using an external web server instead.*