server {
listen 80;
server_name *.netmaker.url.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name dashboard.netmaker.url.com;
ssl_certificate /etc/letsencrypt/live/netmaker.url.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/netmaker.url.com/privkey.pem;
#include /etc/letsencrypt/options-ssl-nginx.conf;
#ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
location / {
proxy_pass
http://127.0.0.1:8082;
}
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name api.netmaker.url.com;
ssl_certificate /etc/letsencrypt/live/netmaker.url.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/netmaker.url.com/privkey.pem;
#include /etc/letsencrypt/options-ssl-nginx.conf;
#ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
location / {
proxy_pass
http://127.0.0.1:8081;
proxy_set_header Host api.netmaker.url.com;
proxy_pass_request_headers on;
}
}
server {
listen 443 ssl http2;
server_name grpc.netmaker.url.com;
ssl_certificate /etc/letsencrypt/live/netmaker.url.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/netmaker.url.com/privkey.pem;
#include /etc/letsencrypt/options-ssl-nginx.conf;
#ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
# Forces the header to be the one that is visible from the outside
proxy_set_header Host api.netmaker.url.com; # Please change to your URL
# Pass all headers through to the backend
proxy_pass_request_headers on;
location / {
grpc_pass grpc://127.0.0.1:50051;
}
}