Nomad now responds to the basic nomad.nigel.local DNS name
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 4s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 14s

This commit is contained in:
2025-05-10 17:26:45 -07:00
parent a3fdc5fcc7
commit 47b69d7f49
6 changed files with 70 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
127.0.0.1 localhost
127.0.1.1 nigel
# Our own dns stuff
127.0.1.1 nigel.local
127.0.1.1 nomad.nigel.local
127.0.1.1 sanity.nigel.local
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

View File

@@ -0,0 +1,8 @@
server {
server_name nomad.nigel.local;
location / {
proxy_pass http://localhost:4646;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}

View File

@@ -0,0 +1,7 @@
server {
server_name sanity.nigel.local;
location / {
proxy_pass http://localhost:8000;
}
}