Extra files
This commit is contained in:
parent
2b18017b3d
commit
e75d15606d
2 changed files with 85 additions and 0 deletions
21
extra/config.ini.example
Normal file
21
extra/config.ini.example
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
App_mode = "production" #Anything != production will show DEBUG messages
|
||||||
|
|
||||||
|
[App]
|
||||||
|
Ip = ":"
|
||||||
|
Port = 5353
|
||||||
|
Logfile = true
|
||||||
|
Logdir = "/var/log/"
|
||||||
|
|
||||||
|
[Database]
|
||||||
|
Ip = "127.0.0.1"
|
||||||
|
Username = "sacrebleu"
|
||||||
|
Password = "superSecretPassword"
|
||||||
|
Port = "3306"
|
||||||
|
Db = "sacrebleudatabase"
|
||||||
|
|
||||||
|
[Redis]
|
||||||
|
Ip = "127.0.0.1"
|
||||||
|
Port = 6379
|
||||||
|
Password = ""
|
||||||
|
Db = 0
|
||||||
|
Ttl = 10 #In seconds
|
64
extra/db.sql
Normal file
64
extra/db.sql
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
CREATE DATABASE IF NOT EXISTS `lighthouse` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
|
||||||
|
USE `lighthouse`;
|
||||||
|
-- MySQL dump 10.13 Distrib 8.0.22, for macos10.15 (x86_64)
|
||||||
|
--
|
||||||
|
-- Host: localhost Database: lighthouse
|
||||||
|
-- ------------------------------------------------------
|
||||||
|
-- Server version 8.0.22
|
||||||
|
|
||||||
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||||
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||||
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||||
|
/*!50503 SET NAMES utf8 */;
|
||||||
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||||
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||||
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||||
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||||
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||||
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `domains`
|
||||||
|
--
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS `domains`;
|
||||||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
|
CREATE TABLE `domains` (
|
||||||
|
`id` int NOT NULL,
|
||||||
|
`friendly_name` text NOT NULL,
|
||||||
|
`fqdn` varchar(255) NOT NULL,
|
||||||
|
`owner_id` int NOT NULL,
|
||||||
|
`last_edit` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `records`
|
||||||
|
--
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS `records`;
|
||||||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
|
CREATE TABLE `records` (
|
||||||
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
|
`domain_id` int NOT NULL,
|
||||||
|
`name` text NOT NULL,
|
||||||
|
`content` text NOT NULL,
|
||||||
|
`ttl` int NOT NULL,
|
||||||
|
`type` int NOT NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||||
|
|
||||||
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||||
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||||
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||||
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||||
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||||
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||||
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||||
|
|
||||||
|
-- Dump completed on 2020-12-13 15:47:09
|
Loading…
Reference in a new issue