https://github.com/faust64/issues
Outages History - keep track of service failures
https://github.com/faust64/issues
issues peerio
Last synced: 6 months ago
JSON representation
Outages History - keep track of service failures
- Host: GitHub
- URL: https://github.com/faust64/issues
- Owner: faust64
- License: mit
- Created: 2016-01-04T19:34:13.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-12-15T19:12:07.000Z (about 8 years ago)
- Last Synced: 2025-05-16T02:38:57.133Z (8 months ago)
- Topics: issues, peerio
- Language: JavaScript
- Homepage: https://issues.peerio.com/
- Size: 70.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Issues
A web frontend rendering issues list.
## Installation
Peerio-status is shipped by PeerioTechnologies/peerio-websites, in a debian
archive gathering a few static frontends - as well as piwik.
## Manual Installation
```
root@web# cd /var/www
root@web# git clone https://github.com/faust64/issues.git
root@web# cd issues
root@web# rm -fr .git* README.md LICENSE
root@web# export SERVER_NAME=issues.peerio.com
root@web# cat </etc/nginx/sites-available/service-issues.conf
server {
listen 80;
server_name $SERVER_NAME;
add_header Strict-Transport-Security max-age=31536000;
add_header X-Frame-Options SAMEORIGIN;
location / {
ssi on;
root /var/www/issues;
index index.html;
}
}
server {
listen 443 ssl spdy;
server_name $SERVER_NAME;
add_header Strict-Transport-Security max-age=31536000;
add_header X-Frame-Options SAMEORIGIN;
ssl on;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:DHE-RSA-AES128-SHA:DES-CBC3-SHA;
ssl_prefer_server_ciphers on;
location / {
ssi on;
root /var/www/issues;
index index.html;
}
}
EOF
root@web# ln -sf /etc/nginx/sites-available/service-issues.conf /etc/nginx/sites-enabled/service-issues.conf
root@web# service nginx restart #or systemctl restart nginx
```