├── .gitignore ├── 01_Insecure ├── Dockerfile ├── api_functions.R └── start_api.R ├── 02_BasicAuth ├── Dockerfile ├── api_functions.R ├── nginx.conf └── start_api.R ├── 03_BasicAuth_SSL ├── Dockerfile ├── api_functions.R ├── nginx.conf └── start_api.R ├── 04_assets ├── How to make a dockerized plumbeR API secure with SSL and BasicAuth.docx ├── auth.png ├── r-bloggers.png ├── schema.png └── schema.pptx ├── README.md └── Tutorial 1.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/.gitignore -------------------------------------------------------------------------------- /01_Insecure/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/01_Insecure/Dockerfile -------------------------------------------------------------------------------- /01_Insecure/api_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/01_Insecure/api_functions.R -------------------------------------------------------------------------------- /01_Insecure/start_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/01_Insecure/start_api.R -------------------------------------------------------------------------------- /02_BasicAuth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/02_BasicAuth/Dockerfile -------------------------------------------------------------------------------- /02_BasicAuth/api_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/02_BasicAuth/api_functions.R -------------------------------------------------------------------------------- /02_BasicAuth/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/02_BasicAuth/nginx.conf -------------------------------------------------------------------------------- /02_BasicAuth/start_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/02_BasicAuth/start_api.R -------------------------------------------------------------------------------- /03_BasicAuth_SSL/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/03_BasicAuth_SSL/Dockerfile -------------------------------------------------------------------------------- /03_BasicAuth_SSL/api_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/03_BasicAuth_SSL/api_functions.R -------------------------------------------------------------------------------- /03_BasicAuth_SSL/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/03_BasicAuth_SSL/nginx.conf -------------------------------------------------------------------------------- /03_BasicAuth_SSL/start_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/03_BasicAuth_SSL/start_api.R -------------------------------------------------------------------------------- /04_assets/How to make a dockerized plumbeR API secure with SSL and BasicAuth.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/04_assets/How to make a dockerized plumbeR API secure with SSL and BasicAuth.docx -------------------------------------------------------------------------------- /04_assets/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/04_assets/auth.png -------------------------------------------------------------------------------- /04_assets/r-bloggers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/04_assets/r-bloggers.png -------------------------------------------------------------------------------- /04_assets/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/04_assets/schema.png -------------------------------------------------------------------------------- /04_assets/schema.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/04_assets/schema.pptx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial 1.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinHanewald/rbloggerstutorial1/HEAD/Tutorial 1.Rproj --------------------------------------------------------------------------------