mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-02 22:00:15 +02:00
18 lines
378 B
Markdown
18 lines
378 B
Markdown
# Troubleshooting <a id="troubleshooting"></a>
|
|
|
|
## PageSpeed Module Incompatibility <a id="pagespeed-incompatibility"></a>
|
|
|
|
It seems that Web 2 is not compatible with the PageSpeed module. Please disable the PageSpeed module using one of the
|
|
following methods.
|
|
|
|
**Apache**:
|
|
```
|
|
ModPagespeedDisallow "*/icingaweb2/*"
|
|
```
|
|
|
|
**Nginx**:
|
|
```
|
|
pagespeed Disallow "*/icingaweb2/*";
|
|
```
|
|
|