Skip to content

Commit 5c99d36

Browse files
TyBraniffTBlueF
andauthored
Update ExternalWebserversFile.md (#115)
* Update ExternalWebserversFile.md "Require All Granted" is the way apache24 would prefer you allow access https://httpd.apache.org/docs/2.4/howto/access.html#:~:text=The%20Allow%2C%20Deny%2C%20and%20Order%20directives%2C%20provided%20by%20mod_access_compat%2C%20are%20deprecated%20and%20will%20go%20away%20in%20a%20future%20version.%20You%20should%20avoid%20using%20them%2C%20and%20avoid%20outdated%20tutorials%20recommending%20their%20use. trying to start a fresh Apache24 install with this will get the error "Invalid command 'allow', perhaps misspelled or defined by a module not included in the server configuration" You'd have to enable mod_access_compat for backwards compatibility to make it work right with this, and per the apache website is not recommended. Simply removing it still works. * Update ExternalWebserversSQL.md Same for this page as FILE.md * Update ExternalWebserversFile.md Made require all first * Update addons.conf --------- Co-authored-by: Lukas Rieger <TBlueF@users.noreply.github.com>
1 parent 1bed7ae commit 5c99d36

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

assets/addon_browser/addons.conf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1090,6 +1090,17 @@
10901090
"github": "https://github.com/TyBraniff/Bluemap-x-SophisticatedBackpacks"
10911091
}
10921092
}
1093+
{
1094+
name: "JustStargate x BlueMapModelLoaders"
1095+
description: "A Resource pack to be used with the Bluemap Addon BlueMapModelLoaders to help render Just Stargate models in Bluemap"
1096+
author: "TyBraniff"
1097+
apiVersion: ""
1098+
platforms: ["resourcepack"]
1099+
links: {
1100+
"modrinth": "https://modrinth.com/resourcepack/bluemapmodelloaders-x-juststargate"
1101+
"github": "https://github.com/TyBraniff/BlueMapModelLoaders-x-JustStargate"
1102+
}
1103+
}
10931104
{
10941105
name: "BlueMap Auto Open Map List"
10951106
description: "Automatically opens the map list when BlueMap is loaded in the browser."

wiki/webserver/ExternalWebserversFile.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,8 @@ Don't forget to restart apache2 after installing any missing module via `a2enmod
9696
```apache
9797
DocumentRoot /var/www/
9898
<Directory /var/www/>
99-
allow from all
100-
Options FollowSymLinks
10199
Require all granted
100+
Options FollowSymLinks
102101
SetEnv no-gzip
103102
104103
RewriteEngine on

wiki/webserver/ExternalWebserversSQL.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,8 @@ Here is an example for how it could look like on Apache:
8080
```apache
8181
DocumentRoot /var/www/
8282
<Directory /var/www/>
83-
allow from all
84-
Options FollowSymLinks
8583
Require all granted
84+
Options FollowSymLinks
8685
8786
RewriteEngine On
8887

0 commit comments

Comments
 (0)