Skip to content

Commit

Permalink
Wordpress info
Browse files Browse the repository at this point in the history
  • Loading branch information
by-cx committed Aug 5, 2023
1 parent f865291 commit fb676b5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/cs/frameworks/wordpress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Instalace WordPressu

WordPress na Roští funguje bez problémů, ale je potřeba mu na začátku během instalace trochu pomoci.
Ve výchozím stavu totiž ignoruje hlavičku *X-Forwarded-Proto*, kde aplikacím říkáme, že běží na
HTTPS. WordPress pak dává do stránek linky na statická data s *http://* místo *https://* a prohlížeče
takové zdroje odmítají načíst. V konzoli prohlížeče pak můžete najít podobný výstup:

![Konzole prohlížeče](../../imgs/wordpress.png)

Řešením je do *wp-config.php* přidat řádek:

$_SERVER['HTTPS']='on';

Kromě této změny ještě můžete zvážit optimalizaci počtu PHP-FPM workerů, kterou máme popsanou v
[sekci PHP](../apps/php.md#nastaveni-php-fpm).

S každým běžícím workerem bude růst množství obsazené paměti, takže konečné číslo závisí jak
na vybraném balíčku, tak na množství paměti, které WordPress využije.
Binary file added docs/imgs/wordpress.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ nav:
- Golang: cs/apps/golang.md
- Frameworky:
- "Laravel": cs/frameworks/laravel.md
- "WordPress": cs/frameworks/wordpress.md
- "Next.js": cs/frameworks/nextjs.md
- "React static site": cs/frameworks/react-static.md
- "Strapi": cs/frameworks/strapi.md
Expand Down

0 comments on commit fb676b5

Please sign in to comment.