Skip to content

Commit

Permalink
Merge pull request #9 from DO1JLR/aalend
Browse files Browse the repository at this point in the history
Adding aalend geekend
  • Loading branch information
DO1JLR authored Nov 1, 2023
2 parents beb02ad + 76f37d2 commit 9e17083
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 2 deletions.
2 changes: 1 addition & 1 deletion collections/ansible_collections/community/general
Submodule general updated 198 files
4 changes: 4 additions & 0 deletions host_vars/web01.l3d.space/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@ nginx_sites:
- name: 'www.xn--see-br-0xa.se'
- name: 'thelaend.xn--see-br-0xa.se'
- name: 'www.thelaend.xn--see-br-0xa.se'
- name: 'aalen-geekend-23.winkekatze.tv'
webroot:
user: 'winkekatze'
- name: 'www.aalen-geekend-23.winkekatze.tv'
- name: 'winkekatze.tv'
webroot:
user: 'winkekatze'
Expand Down
2 changes: 1 addition & 1 deletion roles/do1jlr.dotfiles
Submodule do1jlr.dotfiles updated 34 files
+9 −0 .github/dependabot.yml
+0 −18 .github/workflows/ansible-archlinux-latest.yml
+0 −18 .github/workflows/ansible-centos-centos7.yml
+0 −18 .github/workflows/ansible-centos-centos8.yml
+0 −18 .github/workflows/ansible-centos-centos9.yml
+0 −18 .github/workflows/ansible-centos-latest.yml
+0 −18 .github/workflows/ansible-debian-bullseye.yml
+0 −18 .github/workflows/ansible-debian-buster.yml
+0 −18 .github/workflows/ansible-debian-latest.yml
+0 −18 .github/workflows/ansible-debian-sid.yml
+0 −23 .github/workflows/ansible-debian-stable.yml
+0 −18 .github/workflows/ansible-debian-stretch.yml
+0 −18 .github/workflows/ansible-fedora-31.yml
+0 −18 .github/workflows/ansible-fedora-32.yml
+0 −18 .github/workflows/ansible-fedora-33.yml
+0 −18 .github/workflows/ansible-fedora-latest.yml
+10 −10 .github/workflows/ansible-linting-check.yml
+0 −18 .github/workflows/ansible-ubuntu-bionic.yml
+0 −18 .github/workflows/ansible-ubuntu-latest.yml
+0 −18 .github/workflows/ansible-ubuntu-trusty.yml
+10 −8 .github/workflows/galaxy.yml
+22 −0 .github/workflows/j2lint-check.yml
+22 −0 .github/workflows/yamllint-check.yml
+0 −23 .github/workflows/yamllint.yaml
+1 −0 defaults/main.yml
+6 −8 meta/main.yml
+1 −1 tasks/bashrc.yml
+0 −8 tasks/basic-selinux.yml
+15 −16 tasks/main.yml
+5 −4 tasks/ranger.yml
+1 −1 tasks/tmux.yml
+13 −13 tasks/versioncheck.yml
+1 −1 tasks/vimrc.yml
+4 −2 templates/ranger_rc.conf.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;

server_name aalen-geekend-23.winkekatze.tv;

include snippets/tls_parameters_{{ site.name }}.snippet.conf;
include snippets/tls_certificate_{{ site.name }}.snippet.conf;
include snippets/logging_{{ site.name }}.snippet.conf;

root /srv/www/aalen-geekend-23.winkekatze.tv;

location / {
charset utf-8;
try_files $uri $uri/ =404;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;

server_name www.aalen-geekend-23.winkekatze.tv;

include snippets/tls_parameters_{{ site.name }}.snippet.conf;
include snippets/tls_certificate_{{ site.name }}.snippet.conf;
include snippets/logging_{{ site.name }}.snippet.conf;

location / {
return 308 https://aalen-geekend-23.winkekatze.tv$request_uri;
}
}

0 comments on commit 9e17083

Please sign in to comment.