File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ Coder's current activity and usage. It may be necessary to increase the
114
114
resources allocated to Coder's database. Alternatively, you can raise the
115
115
configured threshold to a higher value (this will not address the root cause).
116
116
117
- > ** Tip: **
117
+ > [ !TIP ]
118
118
>
119
119
> - You can enable
120
120
> [ detailed database metrics] ( ../cli/server.md#--prometheus-collect-db-metrics )
Original file line number Diff line number Diff line change @@ -222,6 +222,16 @@ resource "coder_app" "jupyter" {
222
222
}
223
223
```
224
224
225
+ If you cannot enable a
226
+ [ wildcard subdomain] ( https://coder.com/docs/v2/latest/admin/configure#wildcard-access-url ) ,
227
+ you can configure the template to run Jupyter on a path. There is however
228
+ [ security risk] ( https://coder.com/docs/v2/latest/cli/server#--dangerous-allow-path-app-sharing )
229
+ running an app on a path and the template code is more complicated with coder
230
+ value substitution to recreate the path structure.
231
+
232
+ [ This] ( https://github.com/sharkymark/v2-templates/tree/main/pod-with-jupyter-path )
233
+ is a community template example.
234
+
225
235
![ JupyterLab in Coder] ( ../images/jupyter.png )
226
236
227
237
## RStudio
@@ -259,6 +269,17 @@ resource "coder_app" "rstudio" {
259
269
}
260
270
```
261
271
272
+ If you cannot enable a
273
+ [ wildcard subdomain] ( https://coder.com/docs/v2/latest/admin/configure#wildcard-access-url ) ,
274
+ you can configure the template to run RStudio on a path using an NGINX reverse
275
+ proxy in the template. There is however
276
+ [ security risk] ( https://coder.com/docs/v2/latest/cli/server#--dangerous-allow-path-app-sharing )
277
+ running an app on a path and the template code is more complicated with coder
278
+ value substitution to recreate the path structure.
279
+
280
+ [ This] ( https://github.com/sempie/coder-templates/tree/main/rstudio ) is a
281
+ community template example.
282
+
262
283
![ RStudio in Coder] ( ../images/rstudio-port-forward.png )
263
284
264
285
## Airflow
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ templates.
29
29
- [ atnomoverflow/coder-template] ( https://github.com/atnomoverflow/coder-template ) -
30
30
Kubernetes template that install VS code server Rstudio jupyter and also set
31
31
ssh access to gitlab (Works also on self managed gitlab).
32
+ - [ sempie/coder-templates] ( https://github.com/sempie/coder-templates ) - RStudio
33
+ template on a path using NGINX in the workspace
32
34
33
35
## Automation
34
36
You can’t perform that action at this time.
0 commit comments