Skip to content

Commit 144b5dc

Browse files
Fix typos in docs and code (#337)
* Fix typos (#332) * Fixed spelling error in title (Fixes #334) * Fix healthcheck spelling (Ref #334) * Remove excent (Ref #334) * Fix commonvhost * Fixes mbstring (#334) * Revert back to `comonvhost` as per Apache (#334) - https://httpd.apache.org/docs/2.4/logs.html#virtualhost * Fix typo in fpm-nginx variation description --------- Co-authored-by: Viktor Szépe <[email protected]>
1 parent 4b9e492 commit 144b5dc

29 files changed

+44
-44
lines changed

docs/components/Global/MobileMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
</svg>
4747
</div>
4848

49-
Github
49+
GitHub
5050
</NuxtLink>
5151

5252
<NuxtLink :to="'https://github.com/sponsors/serversideup'" class="flex items-center justify-center w-[115px] py-2 font-bold font-inter text-white rounded-lg border border-solid border-slate-700 bg-slate-800 mb-6 hover:bg-slate-700 text-sm">

docs/components/content/Column.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<script setup>
1111
const props = defineProps({
1212
sticky: {
13-
defualt: false
13+
default: false
1414
}
1515
})
1616
</script>

docs/components/content/MarketingFollowAlong.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
</svg>
5353

5454
<span class="font-bold text-white text-2xl leading-[48px] my-1 font-inter">
55-
Github
55+
GitHub
5656
</span>
5757

5858
<p class="text-slate-300 text-base font-inter">

docs/components/content/MarketingHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
</svg>
7272
</div>
7373

74-
Github
74+
GitHub
7575
</NuxtLink>
7676

7777
<NuxtLink target="_blank" :to="'https://github.com/sponsors/serversideup'" class="flex items-center px-[14px] py-2 font-bold font-inter text-white rounded-lg border border-solid border-slate-700 bg-slate-800 hover:bg-slate-700 text-sm">

docs/content/docs/2.getting-started/2.installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The `fpm-apache` variation is meant for users who want to run something like Wor
4242
[Learn more about using Docker with WordPress →](/docs/guide/using-wordpress-with-docker)
4343

4444
### FPM-NGINX
45-
The `fpm-nginx` variation is great for people who want to run Laravel applications or similar. This allows you to serve static content quickly with NGINX but also pass PHP requests to PHP-FPM. Similar to PHP-Apache, there are two proccess required to run this variation. We use S6 Overlay to ensure the container health is accurate.
45+
The `fpm-nginx` variation is great for people who want to run Laravel applications or similar. This allows you to serve static content quickly with NGINX but also pass PHP requests to PHP-FPM. Similar to PHP-Apache, there are two processes required to run this variation. We use S6 Overlay to ensure the container health is accurate.
4646

4747
[Learn more about S6 Overlay →](/docs/guide/using-s6-overlay)
4848

@@ -59,7 +59,7 @@ For example, if you're running a WordPress site with a ton of different plugins,
5959
All versions + variations are tagged by:
6060
- Major Version (example: `8` will give you the latest 8.x version)
6161
- Minor Version (example: `8.3` will give you the latest 8.3.x version)
62-
- Patch Version (example: `8.3.2` will alway stay at the 8.3.2 version)
62+
- Patch Version (example: `8.3.2` will always stay at the 8.3.2 version)
6363

6464
If you use `latest`, you will always get the latest stable version of the CLI variation of PHP running the latest version of Debian. For the best stability in production environments, you may want to pin to a specific patch version (example: `8.3.2`).
6565

@@ -76,7 +76,7 @@ label: The Full Image Tag Standard
7676

7777
::code-panel
7878
---
79-
label: Latest version of 8.3.x running FPM + NGINX from Github Packages
79+
label: Latest version of 8.3.x running FPM + NGINX from GitHub Packages
8080
---
8181
```bash
8282
ghcr.io/serversideup/php:8.3-fpm-nginx

docs/content/docs/2.getting-started/3.default-configurations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The official PHP images are already providing the following extensions:
7171
- fileinfo
7272
- filter
7373
- hash
74-
- mbstirng
74+
- mbstring
7575
- openssl
7676
- pcre
7777
- session

docs/content/docs/2.getting-started/3.upgrade-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you do not select a specific patch version, then you will receive automatic P
1010
For example, you can select your version based on the different version numbers:
1111
- Major Version (example: `8` will give you the latest 8.x version)
1212
- Minor Version (example: `8.3` will give you the latest 8.3.x version)
13-
- Patch Version (example: `8.3.2` will alway stay at the 8.3.2 version)
13+
- Patch Version (example: `8.3.2` will always stay at the 8.3.2 version)
1414

1515
If you use `latest`, you will always get the latest stable version of the CLI variation of PHP. For the best stability in production environments, you may want to pin to a specific patch version (example: `8.3.2`).
1616

docs/content/docs/2.getting-started/7.contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You must have these installed on your system.
1818

1919
## How things work
2020
1. All files are stored in the `/src` folder
21-
1. Github Actions will automatically build and deploy the images
21+
1. GitHub Actions will automatically build and deploy the images
2222

2323
## Running things locally
2424
To run a build, simply run `./scripts/dev.sh` (with Docker Desktop running). This will show you a help menu with all the available options.

docs/content/docs/3.guide/100.migrating-from-v2-to-v3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The following changes are considered to be "breaking changes" and will require y
6565
We now use Debian or Alpine as our base OS (because we're using the official PHP images as a base). This is a huge change, but we're confident this will be the best direction moving forward.
6666

6767
### `ppa:ondrej/php` is no longer used
68-
Since we're using PHP.net as the "official source of truth" for getting our PHP versions, this means we're also dropping support for the `ppa:ondrej/php` repostory. If you're using things like `apt-get install php-redis` you will need to change your method of installing PHP extensions.
68+
Since we're using PHP.net as the "official source of truth" for getting our PHP versions, this means we're also dropping support for the `ppa:ondrej/php` repository. If you're using things like `apt-get install php-redis` you will need to change your method of installing PHP extensions.
6969

7070
[Learn how to install your own PHP extension →](/docs/customizing-the-image/installing-additional-php-extensions)
7171

docs/content/docs/3.guide/3.using-wordpress-with-docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
head.title: 'WordPress Optimizations - Docker PHP - Server Side Up'
3-
description: 'Learn how serverideup/php is optimized for running WordPress in production.'
3+
description: 'Learn how serversideup/php is optimized for running WordPress in production.'
44
layout: docs
55
---
66

0 commit comments

Comments
 (0)