SWAG is a complete security solution that provides SSL/TLS encryption and authentication for your web applications. It also comes with reverse proxy and web server capabilities, making it a versatile tool for securing your web applications. In this tutorial, we will take you through the steps required to install SWAG on NetBSD.
Before you start the installation process, ensure that you have the following:
Clone the docker-swag repository from the official GitHub page by running the following command:
git clone https://github.com/linuxserver/docker-swag.git
Navigate to the cloned docker-swag
directory and create a .env
file by copying the .env.sample
file. Run the following command:
cd docker-swag
cp .env.sample .env
Then, open the .env
file using your favorite text editor and modify the following variables:
URL
: Set this to the domain name of your serverSUBDOMAINS
: Set this to www,*,*.<domain_name>
EMAIL
: Set this to your email addressTZ
: Set this to the time zone of your server (e.g. America/New_York
)Now run the docker-compose.yml
file using the following command:
docker-compose up -d
This command will download and build the images required to run SWAG and start the containers in the background.
Check if the SWAG containers are running using the following command:
docker ps
This command will show you a list of containers on your system. You should see the SWAG containers running with their respective names.
You can now secure your web applications by routing them through the SWAG reverse proxy. To do this, you need to modify the configuration files of your web applications to reflect the new server configuration. Here is a sample configuration file for NGINX:
server {
listen 80;
server_name www.<domain_name>;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name www.<domain_name>;
ssl_certificate /path/to/fullchain.pem;
ssl_certificate_key /path/to/privkey.pem;
location / {
proxy_pass http://swag;
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;
}
}
Replace <domain_name>
with your actual domain name and /path/to/fullchain.pem
and /path/to/privkey.pem
with the file paths to your SSL/TLS certificate and key.
You have successfully installed and configured SWAG on NetBSD. You can now use it to secure your web applications and protect them from unauthorized access.
If you want to self-host in an easy, hands free way, need an external IP address, or simply want your data in your own hands, give IPv6.rs a try!
Alternatively, for the best virtual desktop, try Shells!