diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2023-04-24 15:51:25 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2023-04-24 15:51:25 +0000 |
commit | 8b2a9e95246f8f81f88e5afd1290913c385f180f (patch) | |
tree | ca2ab5f068720d10bcbdc5ada35e58ea8dc05a9f | |
parent | 4703736f0610998d258b3de1d76db7cd70da0ed1 (diff) | |
download | boymoder.blog-8b2a9e95246f8f81f88e5afd1290913c385f180f.tar.gz boymoder.blog-8b2a9e95246f8f81f88e5afd1290913c385f180f.zip |
Uncommented docker-compose, added example .env file
-rwxr-xr-x | docker-compose.yml | 2 | ||||
-rw-r--r-- | homelab-wiki/LocalSettings.php | 5 | ||||
-rwxr-xr-x | homelab-wiki/wiki.env.example | 4 |
3 files changed, 7 insertions, 4 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 29e41f3..7b49eb7 100755 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -25,7 +25,7 @@ services: image: jwansek/edawiki2 volumes: - ./homelab-wiki/images:/var/www/html/images - # - ./homelab-wiki/LocalSettings.php:/var/www/html/LocalSettings.php + - ./homelab-wiki/LocalSettings.php:/var/www/html/LocalSettings.php env_file: - ./homelab-wiki/wiki.env ports: diff --git a/homelab-wiki/LocalSettings.php b/homelab-wiki/LocalSettings.php index bf13166..7e53d62 100644 --- a/homelab-wiki/LocalSettings.php +++ b/homelab-wiki/LocalSettings.php @@ -30,7 +30,7 @@ $wgMetaNamespace = "Eden's_Homelab_Wiki"; $wgScriptPath = ""; ## The protocol and server name to use in fully-qualified URLs -$wgServer = "http://srv.home:6970"; +$wgServer = "https://wiki.eda.gay"; ## The URL path to static resources (images, scripts, etc.) $wgResourceBasePath = $wgScriptPath; @@ -38,8 +38,7 @@ $wgResourceBasePath = $wgScriptPath; ## The URL paths to the logo. Make sure you change this from the default, ## or else you'll overwrite your logo when you upgrade! $wgLogos = [ - '1x' => "$wgResourceBasePath/resources/assets/change-your-logo.svg", - 'icon' => "$wgResourceBasePath/resources/assets/change-your-logo.svg", + '1x' => "$wgResourceBasePath/images/c/c9/Logo.png", ]; ## UPO means: this is also a user preference option diff --git a/homelab-wiki/wiki.env.example b/homelab-wiki/wiki.env.example new file mode 100755 index 0000000..d53332a --- /dev/null +++ b/homelab-wiki/wiki.env.example @@ -0,0 +1,4 @@ +WG_DB_PASSWORD=************* +WG_SECRET_KEY=****************************************************** +WG_UPGRADE_KEY=*************** + |