Security in an R Shiny Application

前端 未结 6 1546
说谎
说谎 2021-01-29 23:54

I want to publish an R Shiny web application (http://www.rstudio.com/shiny/) on the web, but I want to password protect it so that only people with credentials can view what I h

相关标签:
6条回答
  • 2021-01-30 00:03

    A bit more late, but I've found another option using ngnix as a proxy:

    This guide has been finished by following partially this guideline: https://support.rstudio.com/hc/en-us/articles/213733868-Running-Shiny-Server-with-a-Proxy

    On an Ubuntu 14.04:

    1. Install nginx
    2. Change file config /etc/nginx/nginx.conf to:

    This:

    events {
            worker_connections 768;
            multi_accept on;
    }
    
    http {
    
      map $http_upgrade $connection_upgrade {
          default upgrade;
          ''      close;
        }
    
      server {
        listen XX;
    
    
    
        location / {
          proxy_pass http://localhost:YY;
          proxy_redirect http://localhost:YY/ $scheme://$host/;
          proxy_http_version 1.1;
          proxy_set_header Upgrade $http_upgrade;
          proxy_set_header Connection $connection_upgrade;
          proxy_read_timeout 20d;
    
          auth_basic "Restricted Content";
          auth_basic_user_file /etc/nginx/.htpasswd;
        }
      }
    }
    

    XX: Port that the nginx will listen to

    YY: Port that the shiny server uses

    1. Using this tutorial, I added password authentication to the nginx server: https://www.digitalocean.com/community/tutorials/how-to-set-up-password-authentication-with-nginx-on-ubuntu-14-04

    2. Set up the shiny process or the shiny server to only listen to localhost (127.0.0.1)

    0 讨论(0)
  • 2021-01-30 00:06

    Its too late for the answer but I think, there is development around the same. You can use google auth to login in the shiny web apps. There is a solution on different thread, you can refer that : ShinyApp Google Login

    0 讨论(0)
  • 2021-01-30 00:11

    This could be viewed as an HTTP requirement rather than a Shiny feature. If so, you could look into first implementing an HTTP authentication, and once the credentials are verified, you can redirect to your Shiny app URL.

    • Here's a blog post that explains setting up simple authentication for Apache Tomcat.

    • Also, take a look at this article for setting it up in IIS

    Searching SO or the Web for basic authentication should get you a few useful links and get you closer.

    0 讨论(0)
  • 2021-01-30 00:24

    This might be a little late but I am going to answer anyways. If you have already got a solution, can you please share it with us?

    My primary aim was very simple. I had a working version of shiny app on my laptop. I used to run it as mentioned below, all the while for testing locally.

    R -e "shiny::runApp('.')"
    

    Then came the moment when we had to put this on out on an Amazon EC2 instance.

    At first my attempt was to directly proxy apache to port 8100 on which my app would listen to. But that didn't work that well as it appears that running the server in this manner actually uses raw sockets where as using a shiny-server falls back to using sock.js hence the communication is now over HTTP instead.

    So downloaded the shiny-server app on our EC2 instance by following the instructions here: https://github.com/rstudio/shiny-server

    Btw, though the instructions there recommend you install node.js from source if you are using a RHEL instance, it worked pretty well for me by going the yum install way. You have those instructions here.

    Following the node.js, shiny-server installation & setup, edited my Apache conf (Ubuntu and RHEL call the conf differently. Hence edit the one you have). Added a virtual host to service my requests. And as you can notice, also masked it with a Apache Basic digest Auth with the Apache Location directive.

    <VirtualHost *:80>
    
        ProxyPass / http://localhost:3838/
        ProxyPassReverse / http://localhost:3838/
        ProxyPreserveHost On
    
        <Location />
            AuthType Basic
            AuthName "Restricted Access - Authenticate"
            AuthUserFile /etc/httpd/htpasswd.users
            Require valid-user
        </Location>
    
    </VirtualHost>
    

    Apart from this also edited the shiny-server conf to listen to request from 127.0.0.1 only (localhost only). So in my shiny-server I have the following:

    listen 3838 127.0.0.1;
    

    Btw, you wouldn't need this if you are in an Amazon EC2 environment as you can use the security-group setting in your EC2 dashboard to do the same. I did this anyway as a good measure.

    This, for now, is enough as we were looking for something very quick & simple.

    Now desperately waiting for the awesome RShiny folks to provide auth as a part of the enterprise edition deal.

    Hope this helps.

    0 讨论(0)
  • 2021-01-30 00:26

    At this time there isn't a straight forward way to do this. However we will be releasing a commercial version of Shiny Server in the near future. We'll be doing a beta in the upcoming month or so and the official release before the end of the year. This will include the ability to have password authentication for your Shiny Apps. In addition, Shiny Server Pro will have features around security, authentication, scalability, server monitoring, and premium support.

    Another place that you might be able to get some feedback is the Shiny Mailing List. There are a lot of active users who might have some ideas. Otherwise, if you'd like to contact us directly about this, you can email info@rstudio.com and I'll respond.

    Best,

    Josh

    Product Manager - RStudio

    0 讨论(0)
  • 2021-01-30 00:27

    This may be a little late for the OP but it may be useful for your use case:

    https://auth0.com/blog/2015/09/24/adding-authentication-to-shiny-open-source-edition/

    It's similar to the Rohith's answer, but it uses Auth0 instead, which allows you more authentication options (Like connecting, Google Accounts, Active directory, LDAP, and a big etc)

    Disclaimer: I work at Auth0, we are using Shiny internally with this configuration and it works fine.

    0 讨论(0)
提交回复
热议问题