Add Matrix/Riot package and updated README

This commit is contained in:
2019-06-06 09:21:08 -04:00
parent ee2c8b1604
commit fd64bcb708
10 changed files with 372 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# Simple and straightforward web server for Riot
# {{ ansible_managed }}
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/riot;
index index.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
}