Differences between revisions 1 and 30 (spanning 29 versions)
Revision 1 as of 2023-11-19 21:00:07
Size: 2412
Comment:
Revision 30 as of 2023-11-19 22:20:34
Size: 2585
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
2023 November 19
https://chat.openai.com/c/8e9bcd55-3b27-4470-b840-2b33c1400c80
Line 4: Line 6:
== You == === You ===
Line 7: Line 9:
== ChatGPT ==
As of my last knowledge update in January 2022, Debian Bookworm was not released yet. Therefore, I cannot provide information on the specific version or any changes that might have occurred since then. However, I can provide you with a generic example configuration for MediaWiki and Apache2 on Debian. Please note that you should adapt the configurations according to your specific needs and the actual software versions available in Debian Bookworm.
=== ChatGPT ===
As of my last knowledge update in January 2022, Debian Bookworm was not released yet. Therefore, I cannot provide information on the specific version or any changes that might have occurred since then. However, I can provide you with a generic example configuration for !MediaWiki and Apache2 on Debian. Please note that you should adapt the configurations according to your specific needs and the actual software versions available in Debian Bookworm.
Line 10: Line 12:
== Apache2 Configuration == === Apache2 Configuration ===
Line 14: Line 16:
------
Line 15: Line 19:
-----
<VirtualHost *:80>
    ServerAdmin webmaster@example.com
    ServerName yourdomain.com
    DocumentRoot /var/www/mediawiki

<!VirtualHost *:80>
    !ServerAdmin webmaster@example.com

!ServerName yourdomain.com

!DocumentRoot /var/www/mediawiki
Line 22: Line 28:
        Options +FollowSymLinks
        AllowOverride All

Options +!FollowSymLinks

!AllowOverride All<<BR>>
Line 25: Line 34:
Line 27: Line 37:
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
-----
    !ErrorLog ${APACHE_LOG_DIR}/error.log

!CustomLog ${APACHE_LOG_DIR}/access.log combined

<!/VirtualHost>

------
Line 34: Line 47:
----- ------
Line 36: Line 50:
Line 37: Line 52:
-----
------
Line 40: Line 56:
== MediaWiki Configuration ==
Download and install MediaWiki:
=== MediaWiki Configuration ===
Line 43: Line 58:
----- Download and install !MediaWiki:

------
Line 45: Line 63:
Line 47: Line 66:
-----
Follow the on-screen instructions to set up MediaWiki. Here is a simplified example of the LocalSettings.php configuration:
Line 50: Line 67:
php Copy code
-----
------

Follow the on-screen instructions to set up !MediaWiki. Here is a simplified example of the !LocalSettings.php configuration:

------
Line 53: Line 74:
Line 55: Line 77:
Line 56: Line 79:
$wgMetaNamespace = "YourWikiNamespace";
$wgMetaNamespace = "!YourWikiNamespace";
Line 58: Line 83:
Line 60: Line 86:
<<BR>>
Line 61: Line 88:
Line 62: Line 90:
Line 63: Line 92:
Line 64: Line 94:
Line 68: Line 99:
Line 69: Line 101:
-----
Line 71: Line 102:
Make sure to create a MySQL database for MediaWiki and replace the placeholders in the configuration file with your actual information. ------
Line 73: Line 104:
After making these changes, visit your domain in a web browser, and the MediaWiki setup process should guide you through the rest of the installation. Make sure to create a MySQL database for !MediaWiki and replace the placeholders in the configuration file with your actual information.

After making these changes, visit your domain in a web browser, and the !MediaWiki setup process should guide you through the rest of the installation.

MediaWikiChatGPT

2023 November 19 https://chat.openai.com/c/8e9bcd55-3b27-4470-b840-2b33c1400c80

You

Example configuration files for mediawiki and apache 2 for Debian Bookworm

ChatGPT

As of my last knowledge update in January 2022, Debian Bookworm was not released yet. Therefore, I cannot provide information on the specific version or any changes that might have occurred since then. However, I can provide you with a generic example configuration for MediaWiki and Apache2 on Debian. Please note that you should adapt the configurations according to your specific needs and the actual software versions available in Debian Bookworm.

Apache2 Configuration

Assuming you have Apache2 installed, create a new virtual host configuration file:


# /etc/apache2/sites-available/mediawiki.conf

<VirtualHost *:80>

  • ServerAdmin webmaster@example.com

    ServerName yourdomain.com

    DocumentRoot /var/www/mediawiki

    <Directory /var/www/mediawiki/>

    • Options +FollowSymLinks

      AllowOverride All
      Require all granted

    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log

    CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>


Enable the site and restart Apache:


sudo a2ensite mediawiki.conf

sudo systemctl restart apache2


MediaWiki Configuration

Download and install MediaWiki:


sudo apt-get update

sudo apt-get install mediawiki


Follow the on-screen instructions to set up MediaWiki. Here is a simplified example of the LocalSettings.php configuration:


<?php

# /var/www/mediawiki/LocalSettings.php

$wgSitename = "Your Wiki Name";

$wgMetaNamespace = "YourWikiNamespace";

$wgScriptPath = "/mediawiki";

$wgScriptExtension = ".php";


$wgDBtype = "mysql";

$wgDBserver = "localhost";

$wgDBname = "your_wiki_database";

$wgDBuser = "your_db_username";

$wgDBpassword = "your_db_password";

$wgUpgradeKey = "your_upgrade_key";

# Other configuration settings...


Make sure to create a MySQL database for MediaWiki and replace the placeholders in the configuration file with your actual information.

After making these changes, visit your domain in a web browser, and the MediaWiki setup process should guide you through the rest of the installation.

Remember to check the official documentation for any specific updates or changes that may have occurred since my last knowledge update.

MediaWikiChatGPT (last edited 2023-11-19 22:25:48 by KeithLofstrom)