aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/nginx.sample.conf
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/16209] Match exactly "phpbb" in nginx example configuration fileAlfredo Ramos2019-12-241-1/+1
| | | | | | It blocks an image in the ACP. PHPBB3-16209
* [ticket/16242] Fix nginx redirection loopAlfredo Ramos2019-12-031-2/+2
| | | | PHPBB3-16242
* [ticket/15385] nginx.sample.conf: www redirection, security regexftc22017-10-011-6/+4
| | | | | | | | | | | | | | | | according to the latest wiki info: http://wiki.nginx.org/Pitfalls#Taxing_Rewrites `return 301` is preferred over a rewrite. also, the 'security' regex breaks some official extensions because it will match and deny access to `/ext/phpbb`. looking through the names of dirs and files containing `phpbb`, it looks like the intent of the regex was to only disallow the folder `phpbb` in the root dir and not other `/phpbb` matches. a negative lookbehind was added to specifically not match `/ext/phpbb` but still match other occurrences of `/phpbb`. Tracker ticket: https://tracker.phpbb.com/browse/PHPBB3-15385
* Merge branch 'ticket/security-181' into ticket/security-181-rheaMarc Alexander2016-11-131-1/+1
|\
| * [ticket/security-181] Port .htaccess changes to other webserver typesMarc Alexander2016-11-131-1/+1
| | | | | | | | SECURITY-181
* | [ticket/14497] Support second app.php script in install folderMarc Alexander2016-02-251-1/+24
|/ | | | PHPBB3-14497
* [ticket/14271] Properly use try_files in nginx sample configMarc Alexander2015-11-101-6/+4
| | | | PHPBB3-14271
* [ticket/14271] Improve try_files and use split path infoMarc Alexander2015-11-091-2/+4
| | | | PHPBB3-14271
* [ticket/14271] Update sample configMarc Alexander2015-11-051-3/+12
| | | | PHPBB3-14271
* Merge branch 'develop-olympus' into developAndreas Fischer2011-03-071-8/+25
|\ | | | | | | | | | | * develop-olympus: [ticket/10079] Add gallery avatars to .gitignore. [ticket/10069] Improvements to sample nginx configuration.
| * [ticket/10069] Improvements to sample nginx configuration.Oleg Pudeyev2011-03-061-8/+25
| | | | | | | | | | | | | | | | Most of these were contributed by burningbunny: https://github.com/burningbunny PHPBB3-10069
* | Merge branch 'develop-olympus' into developOleg Pudeyev2011-01-261-0/+2
|\ \ | |/ | | | | | | * develop-olympus: [ticket/10007] Add directive 'internal' to blocked folders in nginx config.
| * [ticket/10007] Add directive 'internal' to blocked folders in nginx config.Andreas Fischer2011-01-241-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The "deny" and "access" directives are IP-based in general. Both directives only support IPv6 from nginx 0.8.22 onwards, on older versions of nginx those directives have no effect on IPv6 requests. Thus they do not block access for IPv6 requests. Adding the "internal" directive blocks external access in general (both IPv4 and IPv6) and makes the web server return a status code 404 (Not Found) response. See: http://nginx.org/en/CHANGES http://wiki.nginx.org/HttpCoreModule#internal PHPBB3-10007
* | [ticket/9790] Support for nginx's X-Accel-Redirect header for attachments.Andreas Fischer2011-01-171-0/+8
|/ | | | PHPBB3-9790
* [ticket/9589] nginx.conf.sample -> nginx.sample.confAndreas Fischer2011-01-051-0/+70
PHPBB3-9589