- Download docker-compose.yml to dir named
sentry
- Change
SENTRY_SECRET_KEY
to random 32 char string - Run
docker-compose up -d
- Run
docker-compose exec sentry sentry upgrade
to setup database and create admin user - (Optional) Run
docker-compose exec sentry pip install sentry-slack
if you want slack plugin, it can be done later - Run
docker-compose restart sentry
- Sentry is now running on public port
9000
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Serverless Geolocation Service, hosted on Cloudflare Workers. | |
* | |
* Learn more at https://maxkostinevich.com/blog/serverless-geolocation | |
* | |
* (c) Max Kostinevich / https://maxkostinevich.com | |
*/ | |
// https://gist.github.com/maephisto/9228207 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install npm packages | |
FROM node:12-alpine as builder | |
WORKDIR /usr/src/app | |
COPY package.json . | |
RUN yarn install --prod | |
# Push js files | |
FROM node:12-alpine | |
WORKDIR /usr/src/app | |
COPY --from=builder /usr/src/app/node_modules /usr/src/app/node_modules |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# megalovania first part | |
# for mikrotik routerboard | |
# by linuxgemini | |
# | |
# challenge started by ave | |
# bar 1 | |
beep -f 293 -l 140 | |
beep -f 293 -l 122 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2021-02-16T17:15:02.859Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ? Login user | |
fastify.post( | |
'/login', | |
{ | |
schema: {body: loginSchema}, | |
}, | |
async (req, res) => { | |
const {email, password} = req.body; | |
await UserModel.getAuthenticated(email, password, (err, user) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
items: | |
- apiVersion: monitoring.coreos.com/v1 | |
kind: Prometheus | |
metadata: | |
creationTimestamp: "2019-09-24T14:59:50Z" | |
generation: 1 | |
labels: | |
app: prometheus-operator-prometheus | |
chart: prometheus-operator-6.11.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mongoose = require("mongoose"); | |
var SonicChannelIngest = require("sonic-channel").Ingest; | |
var MessageModel = mongoose.model("message", new mongoose.Schema({ | |
session_id : String, | |
website_id : String, | |
type : String, | |
content : Object | |
})); |
This gist will guide you through the setup of a wildcard Let's encrypt TLS certificate.
Let’s encrypt is one of a new kind of Certificate Authority. You can get a TLS certificate from them for your website free of charge and without any manual overhead. These certificates are trusted in most browsers that are out there and will show up as valid. Instead of sending Mails or even paper around you can call an API and prove your domain ownership with simple challenges. Basically you call the API with a hostname or domain name you need a TLS certificate for and you get back a challenge string that you need to put in a well known location on your http host or as a txt record in your dns system.
You can find many clients that manage the proces
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ sudo apt install qdirstat | |
[sudo] password for yk: | |
Reading package lists... Done | |
Building dependency tree | |
Reading state information... Done | |
qdirstat is already the newest version (1.5-1). | |
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. | |
17 not fully installed or removed. | |
After this operation, 0 B of additional disk space will be used. | |
Do you want to continue? [Y/n] y |