I installed SSL certificates on both my shiny server and my webserver.
Before installing the SSL certificates, I could run the application in a iframe on the website of our society:
https://www.bsoh.be/?q=nl/shiny/ and in ioslides presentations from rmarkdown files.
However, after installing the certificates, it does not show up anymore on my website nor in my slides.
When running the app directly from rstudio server in a chrome browser using the play button with the code
```{r}
shinyAppDir("/srv/shiny-server/co2sim/")
```
and then "open in browser", the app runs like expected.
is full of similar examples and why I can't get this to work?
Many thanks,
Tom
---
title: "Test"
author: "tom"
date: "22-2-2017"
output: ioslides_presentation
runtime: shiny
---
## Test
- Test
----
```{r}
library(shiny)
shinyAppDir("/srv/shiny-server/co2sim/")
```
----
----