Skip to content

Instantly share code, notes, and snippets.

View Numichi's full-sized avatar
🏠
Working from home

Donát Csongor Numichi

🏠
Working from home
View GitHub Profile
@Numichi
Numichi / docker-compose.yml
Created June 11, 2018 10:00 — forked from boiyama/docker-compose.yml
docker-compose.yml configuring GitLab with Container Registry, Pages, CI, Mattermost (enabled WebRTC), and some other options
version: '2'
services:
gitlab:
container_name: gitlab
image: gitlab/gitlab-ce:latest
restart: always
environment:
GITLAB_OMNIBUS_CONFIG: |
## GitLab configuration settings
##! Check out the latest version of this file to know about the different
@Numichi
Numichi / jwtRS256.sh
Created January 15, 2022 10:18 — forked from ygotthilf/jwtRS256.sh
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub