forked from pelican-eggs/eggs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: PostgresSQL (pelican-eggs#1643)
Fixes user creation and allowing remote connections
- Loading branch information
Showing
2 changed files
with
22 additions
and
693 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,49 @@ | ||
{ | ||
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO", | ||
"meta": { | ||
"version": "PTDL_v1" | ||
"version": "PTDL_v1", | ||
"update_url": null | ||
}, | ||
"exported_at": "2020-03-04T09:53:34-05:00", | ||
"exported_at": "2022-05-08T21:54:05+02:00", | ||
"name": "Postgres", | ||
"author": "[email protected]", | ||
"description": "A default Postgres install that is not really editable.", | ||
"image": "quay.io\/parkervcp\/pterodactyl-images:db_postgres", | ||
"features": null, | ||
"images": [ | ||
"ghcr.io\/parkervcp\/yolks:postgres_14" | ||
], | ||
"file_denylist": [], | ||
"startup": "postgres -D \/home\/container\/postgres_db\/", | ||
"config": { | ||
"files": "{\r\n \"postgres_db\/postgresql.conf\": {\r\n \"parser\": \"file\",\r\n \"find\": {\r\n\t\t \"#port =\": \"port = {{server.build.default.port}}\",\r\n \"#external_pid_file =\": \"external_pid_file = '\/home\/container\/postgres_db\/run\/postgres.pid'\",\r\n \"#unix_socket_directories =\": \"unix_socket_directories = '\/home\/container\/postgres_db\/run\/'\"\r\n }\r\n }\r\n}", | ||
"files": "{\r\n \"postgres_db\/postgresql.conf\": {\r\n \"parser\": \"file\",\r\n \"find\": {\r\n \"#port =\": \"port = {{server.build.default.port}}\",\r\n \"#external_pid_file =\": \"external_pid_file = '\/home\/container\/postgres_db\/run\/postgres.pid'\",\r\n \"#unix_socket_directories =\": \"unix_socket_directories = '\/home\/container\/postgres_db\/run\/'\"\r\n }\r\n }\r\n}", | ||
"startup": "{\r\n \"done\": \"database system is ready to accept connections\"\r\n}", | ||
"logs": "{}", | ||
"stop": "^C" | ||
}, | ||
"scripts": { | ||
"installation": { | ||
"script": "#! \/bin\/ash\r\nadduser -D -h \/home\/container container\r\n\r\necho $POSTGRES_PASSWORD > .passwd\r\n\r\nchown -R container: \/mnt\/server\/\r\n\r\ncat .passwd\r\n\r\nsu container -c 'initdb -D \/mnt\/server\/postgres_db\/ -A md5 -U container --pwfile .passwd'\r\n\r\nmkdir -p \/mnt\/server\/postgres_db\/run\/\r\n\r\necho -e \"Done\"", | ||
"container": "postgres:13.1-alpine", | ||
"entrypoint": "ash" | ||
"script": "#! \/bin\/ash\r\nadduser -D -h \/home\/container container\r\n\r\nchown -R container: \/mnt\/server\/\r\n\r\nsu container -c 'initdb -D \/mnt\/server\/postgres_db\/ -A md5 -U \"$PGUSER\" --pwfile=<(echo \"$PGPASSWORD\")'\r\n\r\nmkdir -p \/mnt\/server\/postgres_db\/run\/\r\n\r\n## Add default \"allow from all\" auth rule to pg_hba\r\nif ! grep -q \"# Custom rules\" \"\/mnt\/server\/postgres_db\/pg_hba.conf\"; then\r\n echo -e \"# Custom rules\\nhost all all 0.0.0.0\/0 md5\" >> \"\/mnt\/server\/postgres_db\/pg_hba.conf\"\r\nfi\r\n\r\necho -e \"Done\"", | ||
"container": "postgres:14-alpine", | ||
"entrypoint": "bash" | ||
} | ||
}, | ||
"variables": [ | ||
{ | ||
"name": "Database Password", | ||
"description": "The Postgres user password that can be changed and should change on server restart.", | ||
"env_variable": "PGPASSWORD", | ||
"default_value": "P@55word", | ||
"user_viewable": 1, | ||
"user_editable": 1, | ||
"rules": "required|string|max:20" | ||
}, | ||
{ | ||
"name": "SuperUser Password", | ||
"description": "The postgres super user password with a strong default.\r\nYou should be generating new ones for each server.\r\nIf you don't then users can hit other users DB's", | ||
"env_variable": "PGROOT", | ||
"default_value": "ZPWgpMN4hETqjXAV", | ||
"user_viewable": 1, | ||
"user_editable": 0, | ||
"rules": "required|string|max:20" | ||
}, | ||
{ | ||
"name": "Postgres User", | ||
"description": "The user for the postgres database", | ||
"name": "Superuser Name", | ||
"description": "The username for the postgres superuser", | ||
"env_variable": "PGUSER", | ||
"default_value": "pterodactyl", | ||
"user_viewable": 1, | ||
"user_editable": 0, | ||
"user_viewable": true, | ||
"user_editable": false, | ||
"rules": "required|string|max:20" | ||
}, | ||
{ | ||
"name": "Postgres Database", | ||
"description": "The postgres database the user will have access too.", | ||
"env_variable": "PGDATABASE", | ||
"default_value": "pterodactyl", | ||
"user_viewable": 1, | ||
"user_editable": 0, | ||
"name": "Superuser Password", | ||
"description": "The postgres super user password with a strong default.\r\nYou should be generating new ones for each server.\r\nIf you don't then users can hit other users DB's", | ||
"env_variable": "PGPASSWORD", | ||
"default_value": "Pl3453Ch4n63M3!", | ||
"user_viewable": true, | ||
"user_editable": false, | ||
"rules": "required|string|max:20" | ||
} | ||
] | ||
|
Oops, something went wrong.