Skip to content

docs: fix spelling #1511

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/03.reference/02.tags/application/tag.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ this.tag.log.log = this.name & ".log";

To verify your current runtime Application configuration use [[function-getapplicationsettings]]

The runtime configuation takes the base server `.CFConfig.json` / admin configuration, overridden by these Application settings.
The runtime configuration takes the base server `.CFConfig.json` / admin configuration, overridden by these Application settings.
2 changes: 1 addition & 1 deletion docs/04.guides/01.getting-started/01.first-steps/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: First steps
id: getting-started-first-steps
---

Welcome to Lucee, a Free and Open Source, high peformance cfml engine.
Welcome to Lucee, a Free and Open Source, high performance cfml engine.

## Lucee Developer Forum

Expand Down
6 changes: 3 additions & 3 deletions docs/recipes/application-cfc.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ This is only one possible behavior of many, Lucee gives you the possibility in t

So, for example, if you only have one Application.cfc in the webroot, define "Root" as setting.

## Configuation Hierarchy
## Configuration Hierarchy

The base Lucee configuation is configured via the `.CFConfig.json` / the Admin.
The base Lucee configuration is configured via the `.CFConfig.json` / the Admin.

Each `Application.cfc` can then override / customise these settings per Application.

Expand Down Expand Up @@ -242,7 +242,7 @@ component {

Below you can find an Application.cfc template that may serve as a starting point for your own applications settings with Lucee CFML engine.

When creating an Application.cfc for the first time, you can configure all the settings within the Lucee Server or Web Administrator and use its "Export" tool ( Lucee Adminisitrator => Settings => Export ) to move (by copy and paste) the settings to your Application.cfc.
When creating an Application.cfc for the first time, you can configure all the settings within the Lucee Server or Web Administrator and use its "Export" tool ( Lucee Administrator => Settings => Export ) to move (by copy and paste) the settings to your Application.cfc.

```cfs
component displayname="Application" output="false" hint="Handle the application" {
Expand Down
4 changes: 2 additions & 2 deletions docs/recipes/setting-system-properties-and-env-vars.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Lucee settings are usually configured manually within the Server Administrator f

While settings for web-context are also configurable through your web applications Application.cfc (see [[tag-application]]), specific server-context settings can be configured with *Environment Variables* or *System Properties* (since Lucee 5.3).

This allowe Administrators and Developers power to tweak server settings from startup without having to configure in the Server Administrators web interface.
This allows Administrators and Developers power to tweak server settings from startup without having to configure in the Server Administrators web interface.

For example, pre-define the extensions to be installed, enable full null support or define charsets for your running Lucee server instance.

Expand Down Expand Up @@ -99,7 +99,7 @@ Find below a brief overview of available options about where and how to set your
<tr>
<td>CommandBox </td>
<td>Limited to the running CommandBox instance </td>
<td>Since CommandBox 4.5 <em>Environment Variables</em> can be set in a file named ".env". You can easily create the .env file by running the command <code>dotenv set</code> from your CommanBox CLI. For more information please see <a href="https://github.com/commandbox-modules/commandbox-dotenv">How to set it up CommandBox with .env files</a> and <a href="https://commandbox.ortusbooks.com/usage/environment-variables">CommandBox Environment Variables</a> </td>
<td>Since CommandBox 4.5 <em>Environment Variables</em> can be set in a file named ".env". You can easily create the .env file by running the command <code>dotenv set</code> from your CommandBox CLI. For more information please see <a href="https://github.com/commandbox-modules/commandbox-dotenv">How to set it up CommandBox with .env files</a> and <a href="https://commandbox.ortusbooks.com/usage/environment-variables">CommandBox Environment Variables</a> </td>
</tr>
</tbody>
</table>
Expand Down
2 changes: 1 addition & 1 deletion docs/recipes/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Once the initial startup and deployment has got far enough along to have loaded

The best first step when debugging a Lucee Server is start Tomcat manually, in a Terminal, as opposed to auto starting or running as service/daemon.

In the `tomcat/bin` directory, there's a bash/batch file called `catalina.sh` or `catalina.bat` which can be run with the run option, i.e `./cataline.sh run` or `catalina run`
In the `tomcat/bin` directory, there's a bash/batch file called `catalina.sh` or `catalina.bat` which can be run with the run option, i.e `./catalina.sh run` or `catalina run`

By default, this will show all the `catalina.log` information in the console.

Expand Down
Loading