diff --git a/pillar/paas/alkane/windriver/main.sls b/pillar/paas/alkane/windriver/main.sls --- a/pillar/paas/alkane/windriver/main.sls +++ b/pillar/paas/alkane/windriver/main.sls @@ -116,6 +116,9 @@ - www51 - zed51 + espace-win.org: + - grip + nasqueron.org: - api51 - grafana diff --git a/roles/devserver/userland-software/misc.sls b/roles/devserver/userland-software/misc.sls --- a/roles/devserver/userland-software/misc.sls +++ b/roles/devserver/userland-software/misc.sls @@ -16,6 +16,7 @@ - fossil - subversion # Extra features + - gh - git-filter-repo devserver_software_misc_media: diff --git a/roles/webserver-alkane/nginx/files/vhosts/espace-win.org/grip.conf b/roles/webserver-alkane/nginx/files/vhosts/espace-win.org/grip.conf new file mode 100644 --- /dev/null +++ b/roles/webserver-alkane/nginx/files/vhosts/espace-win.org/grip.conf @@ -0,0 +1,43 @@ +# ------------------------------------------------------------- +# Webserver +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +# Site: grip.espace-win.org +# License: Trivial work, not eligible to copyright +# Source file: roles/webserver-alkane/nginx/files/vhosts/espace-win.org/grip.conf +# ------------------------------------------------------------- +# +# <auto-generated> +# This file is managed by our rOPS SaltStack repository. +# +# Changes to this file may cause incorrect behavior +# and will be lost if the state is redeployed. +# </auto-generated> + +server { + listen 80; + listen [::]:80; + server_name grip.espace-win.org grip.espace-win.net; + + include includes/tls; + ssl_certificate /usr/local/etc/letsencrypt/live/grip.espace-win.org/fullchain.pem; + ssl_certificate_key /usr/local/etc/letsencrypt/live/grip.espace-win.org/privkey.pem; + + error_log /var/log/www/espace-win.org/grip-error.log; + access_log /var/log/www/espace-win.org/grip-access.log; + + include includes/letsencrypt; + + location = / { + return 301 https://dereckson.hotglue.me/grip; + } + + location /doc/apps { + alias /usr/local/share/doc; + autoindex on; + default_type text/plain; + } + + location = /doc/apps/cmake/cmake-properties.txt { + return 302 https://cmake.org/cmake/help/git-master/manual/cmake-properties.7.html; + } +}