Dateien aus den Blog-Posts eingebaut.

This commit is contained in:
Olli Graf
2023-11-10 09:56:54 +01:00
commit 59593ee076
5 changed files with 76 additions and 0 deletions

4
nginx/createdb.sql Normal file
View File

@@ -0,0 +1,4 @@
create user npm identified by '<passwort>';
create database npm;
grant all privileges on npm.* to npm;
flush privileges;