Nginx Configuration
Configure the dashboard to work with your domain
1
Prerequisites
sudo mkdir -p /var/www
cd /var/www
git clone https://github.com/YouSeeMeRunning2/DrakoBot.git # You won't be able to use my repository
sudo mv /var/www/DrakoBot /var/www/drakobot # Ensure the folder is named drakobotYou won't be able to use my git repository, it's just an example. Your folder may not be called DrakoBot to start with — update the sudo mv command to fit your needs.
3
6
Create Nginx Configuration
Edit the Nginx configuration file:
sudo nano /etc/nginx/sites-available/dashboard.youseemerunning.comReplace youseemerunning.com with your own domain.
Add the following configuration:
server {
server_name dashboard.youseemerunning.com;
large_client_header_buffers 4 32k;
client_header_buffer_size 32k;
location / {
proxy_pass http://localhost:7000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
add_header Referrer-Policy "strict-origin-when-cross-origin";
# Example SSL configuration (uncomment after running: sudo certbot --nginx -d dashboard.youseemerunning.com)
# listen 443 ssl;
# ssl_certificate /etc/letsencrypt/live/dashboard.youseemerunning.com/fullchain.pem;
# ssl_certificate_key /etc/letsencrypt/live/dashboard.youseemerunning.com/privkey.pem;
# include /etc/letsencrypt/options-ssl-nginx.conf;
# ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
listen 80;
}
# Example HTTPS redirect (uncomment after enabling SSL above)
# server {
# listen 80;
# server_name dashboard.youseemerunning.com;
# return 301 https://$host$request_uri;
# }Replace youseemerunning.com with your own domain and update 5173 to match your port
7
8
9
Your Drako Bot dashboard should now be up and running!
Last updated