Compare commits
5 Commits
24a58b156c
...
d2d02e999f
Author | SHA1 | Date | |
---|---|---|---|
d2d02e999f | |||
|
43a70279b6 | ||
|
352e49bd05 | ||
|
dbdc36130e | ||
|
200a55e058 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
dumb
|
|
@ -1,7 +1,6 @@
|
||||||
# dumb
|
# dumb
|
||||||
With the massive daily increase of useless scripts on Genius's web frontend and having to download megabytes of clutter, [dumb](https://github.com/rramiachraf/dumb) tries to make reading lyrics from Genius a pleasant experience and as lightweight as possible.
|
With the massive daily increase of useless scripts on Genius's web frontend and having to download megabytes of clutter, [dumb](https://github.com/rramiachraf/dumb) tries to make reading lyrics from Genius a pleasant experience and as lightweight as possible.
|
||||||
|
|
||||||
## Screenshot
|
|
||||||
![Screenshot](https://raw.githubusercontent.com/rramiachraf/dumb/main/screenshot.png)
|
![Screenshot](https://raw.githubusercontent.com/rramiachraf/dumb/main/screenshot.png)
|
||||||
|
|
||||||
## Installation & Usage
|
## Installation & Usage
|
||||||
|
@ -16,10 +15,14 @@ go build
|
||||||
The default port is 5555, you can use other ports by setting the `PORT` environment variable.
|
The default port is 5555, you can use other ports by setting the `PORT` environment variable.
|
||||||
|
|
||||||
## Public Instances
|
## Public Instances
|
||||||
As of now, I still haven't got the time to make a public instance and maintain it for people to use at large. For anyone interested in this task feel free to do so and don't forget to create a pull request so I can include your instance here for people to use 😊.
|
|
||||||
|
- dumb.nunosempere.com (experimental)
|
||||||
|
|
||||||
|
As of now, I still haven't got the time to make a public instance and maintain it for people to use at large. For anyone interested in this task feel free to do so and don't forget to create a pull request so I can include your instance here.
|
||||||
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
Contributions are always welcome.
|
Contributions are welcome.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
[MIT](https://github.com/rramiachraf/dumb/blob/main/LICENCE)
|
[MIT](https://github.com/rramiachraf/dumb/blob/main/LICENCE)
|
||||||
|
|
21
scripts/dumb.service
Normal file
21
scripts/dumb.service
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
[Unit]
|
||||||
|
Description=ListMonk
|
||||||
|
Documentation=https://github.com/rramiachraf/dumb
|
||||||
|
After=system.slice multi-user.target postgresql.service network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
User=git
|
||||||
|
Type=simple
|
||||||
|
|
||||||
|
StandardOutput=syslog
|
||||||
|
StandardError=syslog
|
||||||
|
SyslogIdentifier=listmonk
|
||||||
|
|
||||||
|
WorkingDirectory=/etc/dumb
|
||||||
|
ExecStart=/etc/dumb/dumb
|
||||||
|
|
||||||
|
Restart=always
|
||||||
|
RestartSec=5
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
35
scripts/nginx-config
Normal file
35
scripts/nginx-config
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
server {
|
||||||
|
# root /var/www/dumb.yoursite.com/html;
|
||||||
|
# index index.html index.htm index.nginx-debian.html;
|
||||||
|
|
||||||
|
server_name dumb.yoursite.com;
|
||||||
|
# www.dumb.yoursite.com;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
proxy_pass http://localhost:5555;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
|
||||||
|
listen 443 ssl; # managed by Certbot
|
||||||
|
ssl_certificate /etc/letsencrypt/live/dumb.yoursite.com/fullchain.pem; # managed by Certbot
|
||||||
|
ssl_certificate_key /etc/letsencrypt/live/dumb.yoursite.com/privkey.pem; # managed by Certbot
|
||||||
|
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||||
|
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
||||||
|
|
||||||
|
}
|
||||||
|
server {
|
||||||
|
if ($host = dumb.yoursite.com) {
|
||||||
|
return 301 https://$host$request_uri;
|
||||||
|
} # managed by Certbot
|
||||||
|
|
||||||
|
server_name dumb.yoursite.com;
|
||||||
|
|
||||||
|
listen 80;
|
||||||
|
return 404; # managed by Certbot
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user