Skip to content

Various commands, important tutorials and settings for building up and deploying services in a continuous way, configuring reverse proxy using NGINX, and adding SSL certificates to the created apps.

License

Notifications You must be signed in to change notification settings

levindoneto/devopstuff

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DEVOPSTUFF

Various commands, important tutorials and settings for building and deploying services in a continuous way.

Approached Infrastructure Providers: Digital Ocean & Microsoft Azure.

CI: GitLab CI.

Author: Levindo Gabriel Taschetto Neto.

Install GitLab Runner

Used to take and run the jobs from GitLab.

curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | sudo bash
sudo apt-get install gitlab-runner

Register the Runner

On GitLab

  1. Go to the Project.
  2. Settings.
  3. CI/CD.
  4. Expand the Runners menu.
  5. Click "Disable shared Runners".
  6. Pay attention to the following information:

1

On the Machine

sudo gitlab-runner register
  • gitlab-ci coordinator URL: 2. from the previos image.
  • gitlab-ci token for this runner: 3. from the previos image.
  • gitlab-ci description for this runner: Anything.
  • gitlab-ci tags for this runner: Tasks from the .gitlab-ci.yml file.
  • gitlab-ci coordinator URL: docker.
  • gitlab-ci coordinator URL: Any image, once this info is specified within the .gitlab-ci.yml file.

If everything went smoothly, this message will show up:

Runner registered successfully. Feel free to start it, but if it is running already the config should be automatically reloaded!

And the runner should appear on the activated runners within the same page of configuration.

2

Add SSH_PRIVATE_KEY

https://docs.gitlab.com/ee/ci/ssh_keys/ SSH_PRIVATE_KEY <- id_rsa in the ci settings variables

cat ~/.ssh/id_rsa.pub > ~/.ssh/authorized_keys

Subdomain Redirect to an Other IP/Port

Install NGINX for reverse proxying

sudo apt-get install nginx
sudo nano /etc/nginx/sites-available/default

Copy (nginx-config/http2)[nginx-config/http2] into it.

Verify the config's syntax

nginx -t -c /etc/nginx/nginx.conf

To properly restart NGINX after changing the config file

service nginx reload

If error

Jun 10 23:56:30 dawntech systemd[1]: Failed to start A high performance web server and a reverse proxy server.

Access: https://stackoverflow.com/questions/51525710/nginx-failed-to-start-a-high-performance-web-server-and-a-reverse-proxy-server/51527784.

Close everything on Port 80 and run sudo service nginx restart.

Which results in a

YEAR/MONTH/DAY HOUR:MINUTE:SECOND [notice] 69063#69063: signal process started

on /var/log/nginx/error.log.

Check NGINX's log

cat /var/log/nginx/error.log

Set Up HTTPS

sudo mkdir /etc/nginx/ssl
sudo chown -R root:root /etc/nginx/ssl
sudo chmod -R 600 /etc/nginx/ssl

sudo openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
sudo service nginx stop

Open PORT 80

The port 80 must be added to an inbound security rule, once it's accessed on the verification of Let's Encrypt.

On Microsoft Azure

  1. Go to Networking.
  2. Click the button Add inbound port rule.
  3. Fill up the information as the follow image.

inbound_sec_rule

Get Certbot

sudo apt-get update
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:certbot/certbot
sudo apt-get update
sudo apt-get install python-certbot-nginx

Create a certificate for each app

Options may be found on ssl.

sudo certbot --nginx-server-root /etc/nginx

After the proccess is finished, the configuration will be able to be tested on https://www.ssllabs.com/ssltest/analyze.html?d=<DOMAIN_HERE>&latest.

Problems Found on the Way

If INFO: 1 key(s) Remain(s) to be Installed:

https://www.digitalocean.com/community/questions/ssh-copy-id-not-working-permission-denied-publickey

Assign a Runner to Multiple Projects

https://dzone.com/articles/changing-a-gitlab-runner-from-locked-to-a-project

Error to Restart NGINX

It happened because the apache2 service was also running, therefore:

sudo /etc/init.d/apache2 stop

Set up a complete VM environment on Microsoft Azure

TODO azure/.

How to add more subdomains with SSL

Add a new entry to the file /etc/nginx/sites-available/default, such as the one below:

server {
    server_name donna-api.dawntech.dev;

    location / {
        proxy_pass http:https://localhost:5090;
        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;
    }

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/donna-api.dawntech.dev/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/donna-api.dawntech.dev/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
sudo service nginx stop
sudo certbot --nginx # Follow the steps with the new subdomain and redirect
sudo fuser -k 80/tcp
sudo service nginx restart

About

Various commands, important tutorials and settings for building up and deploying services in a continuous way, configuring reverse proxy using NGINX, and adding SSL certificates to the created apps.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published