Skip to content

Commit 16c9340

Browse files
committed
doc: move h2 scripts to install note
1 parent aa14cff commit 16c9340

File tree

4 files changed

+31
-22
lines changed

4 files changed

+31
-22
lines changed

_docs/developer/getting_started/vm_install_using_vagrant.md

+20-4
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,7 @@ instructions.
206206
vagrant up
207207
```
208208
209-
On PowerShell, you will have to set the environment variable in a
210-
different way:
209+
On PowerShell, you will have to set the environment variable differently:
211210
212211
```pwsh
213212
$Env:NO_SUBMISSIONS=1
@@ -245,7 +244,7 @@ instructions.
245244
* From a web browser (Chrome, Firefox, IE, etc.) on your host
246245
computer, go to:
247246

248-
<https://localhost:1511/index.php>
247+
<http://localhost:1511/index.php>
249248

250249
(see the VM login & password info below)
251250

@@ -326,7 +325,7 @@ instructions.
326325

327326

328327
1. When you take a break from Submitty development work, you can
329-
suspend the Submitty VM to to save resources (CPU and battery) on
328+
suspend the Submitty VM to save resources (CPU and battery) on
330329
your host machine.
331330

332331
```
@@ -464,3 +463,20 @@ instructions.
464463
This has been tested with Blink for iOS and Termius for iOS (also available on Android, untested).
465464
466465
6. Navigate to `localhost:1511` on the remote device.
466+
467+
---
468+
469+
## Developing in HTTPS
470+
471+
For *developers* who need to upgrade to HTTP/2 in their development environments,
472+
please follow the step below:
473+
474+
- Run `bash .setup/dev-upgrade-h2.sh up`.
475+
476+
After a successful execution, please use `https://` instead of `http://`.
477+
478+
- To downgrade to HTTP/1.1, run `bash .setup/dev-upgrade-h2.sh down`.
479+
480+
The script should automatically handle the upgrading and issuing a self-signed
481+
certificate. If your browser complains about the security, please head to
482+
[WebSocket](/developer/developing_the_php_site/websocket).

_docs/sysadmin/installation/system_customization.md

+4
Original file line numberDiff line numberDiff line change
@@ -316,3 +316,7 @@ You can customize the login screen with markdown. By default, `# Login` is rende
316316

317317
Refer to [this](/student/communication/markdown) to learn more about markdown.
318318

319+
320+
## Changing the multi-processing module of Apache2, Enabling HTTP2
321+
322+
Please refer to [this sysadmin action](/sysadmin/version_notes/v23.02.XX.md) page.

_docs/sysadmin/installation/version_notes/v22.10.XX.md _docs/sysadmin/installation/version_notes/v23.02.XX.md

+6-17
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
---
2-
title: v22.10.XX > Apache2 HTTP/2 Support
2+
title: v23.02.XX > Apache2 HTTP/2 Support
33
category: System Administrator > Installation Version Notes
44
redirect_from:
5-
- /system_admin/version_notes/v22.10.XX
5+
- /system_admin/version_notes/v23.02.XX
66
---
77

8-
Release [v22.10.XX](https://github.com/Submitty/Submitty/releases/v22.10.XX)
8+
Release [v23.02.XX](https://github.com/Submitty/Submitty/releases/v23.02.XX)
99
includes a sysadmin update to the Apache2 server's module and configuration:
1010

1111
- Module `php7.4`[^PHP] and `mpm_prefork` should be disabled;
1212

1313
- Module `mpm_event` and `http2` should be enabled;
1414

15+
`http2` requires `mpm_event`.
16+
1517
- TLS could be enabled in the development environment to test HTTP/2 related
1618
functions.
1719

@@ -45,7 +47,7 @@ Please follow these steps to upgrade the Apache2 server:
4547

4648
---
4749

48-
If you need to downgrade the HTTP/2 to HTTP/1.1 and re-enable `mpm_prefork`,
50+
If you need to downgrade the HTTP/2 to HTTP/1.1 and re-enable `mpm_prefork`,
4951
please follow the steps below:
5052

5153
1. Disable `http2` and `mpm_event` by `a2dismod http2 mpm_event`;
@@ -57,17 +59,4 @@ please follow the steps below:
5759

5860
---
5961

60-
For developers who need to upgrade to HTTP/2 in their development environments,
61-
please follow the step below:
62-
63-
1. Run `bash .setup/dev-upgrade-h2.sh up`.
64-
65-
For downgrading to HTTP/1.1, run `bash .setup/dev-upgrade-h2.sh down`
66-
67-
The script should automatically handle the upgrading and issuing a self-signed
68-
certificate. If your browser complains about the security, please head to
69-
[WebSocket](/developer/developing_the_php_site/websocket).
70-
71-
---
72-
7362
[^PHP]: Change the PHP version to the deployed version if needed.

navtreedata.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ var NAVTREE =
144144
[ "Update Submitty", "/sysadmin/installation/update", null ],
145145
[ "Version Notes", "/sysadmin/installation/version_notes/index", [
146146
[ "Overview", "/sysadmin/installation/version_notes/index", null],
147-
[ "v22.10.XX", "/sysadmin/installation/version_notes/v22.10.XX", null ],
147+
[ "v23.02.XX", "/sysadmin/installation/version_notes/v23.02.XX", null ],
148148
[ "v22.06.00", "/sysadmin/installation/version_notes/v22.06.00", null ],
149149
[ "v22.05.00", "/sysadmin/installation/version_notes/v22.05.00", null ],
150150
[ "v22.03.00", "/sysadmin/installation/version_notes/v22.03.00", null ],

0 commit comments

Comments
 (0)