You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/v3/guide/deploy/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ full_title: Deployment Guide
7
7
8
8
Follow the regular installation guide to set up your OS.js installation.
9
9
10
-
This article contains instructions and recommendations for deploying your OS.js instance on a production environment.
10
+
This article contains instructions and recommendations for deploying your OS.js instance in a production environment.
11
11
12
12
## Checklist
13
13
@@ -109,7 +109,7 @@ Create a new virtual host file or replace the default one provided by your OS:
109
109
</VirtualHost>
110
110
```
111
111
112
-
*Please note that on some apache versions HTTP connection upgrades does not work for Websockets* (connection issues like dropouts, etc.), and you might have to reconfigure your client to use a dedicated connection path:
112
+
*Please note that on some apache versions HTTP connection upgrades do not work for Websockets* (connection issues like dropouts, etc.), and you might have to reconfigure your client to use a dedicated connection path:
113
113
114
114
> [info] Requires the modules `proxy`, `proxy_wstunnel` and `proxy_http`
115
115
@@ -201,7 +201,7 @@ You can also run the client and server separately (even physically), with some e
201
201
202
202
> Note that if you're hosting on different hostnames, you have to set up CORS. [Example for nginx](https://enable-cors.org/server_nginx.html).
203
203
204
-
Serve the `dist/` directory where your client is, and on the server, just run with the normal `npm run serve` command or methods described above.
204
+
Serve the `dist/` directory where your client is, and on the server, just run with the normal `npm run serve` command or with the methods described above.
205
205
206
206
In this example we configure:
207
207
@@ -210,7 +210,7 @@ In this example we configure:
210
210
211
211
```javascript
212
212
// src/client/config.js
213
-
// By default all of these settings are detected with the URL youre using to visit OS.js
213
+
// By default all of these settings are detected with the URL you're using to visit OS.js
0 commit comments