Compare commits

..

3 Commits

Author SHA1 Message Date
669c414288 Simple sanity container on port 8080 for testing purposes
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 4s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Has been cancelled
2025-05-13 18:39:47 -07:00
e3afed5e4f sanity service on 8080 now 2025-05-12 02:01:31 -07:00
e337989a59 just roll with it at this point 2025-05-12 02:01:20 -07:00
4 changed files with 24 additions and 5 deletions

View File

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

View File

@ -42,13 +42,13 @@
src: consul.hcl
dest: /etc/consul.d/consul.hcl
mode: "0644"
- name: Start consul
- name: Start nomad
ansible.builtin.systemd_service:
name: nomad
state: started
enabled: true
- name: Make sure the nomad service is available
- name: Make sure the consul service is NOT available
ansible.builtin.systemd_service:
name: nomad
state: started
name: consul
state: stopped
enabled: true

View File

@ -0,0 +1,4 @@
# Because I just really needed ok?
FROM nginx:latest
COPY default /etc/nginx/conf.d/default.conf

View File

@ -0,0 +1,15 @@
server {
listen 8080;
listen [::]:8080;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}