Git Product home page Git Product logo

personal-storage-system-pss-'s Introduction

Personal-Storage-System-PSS - Your secure personal storage system.

PSS is a simple and secure storage system and fully customizable as per one's need. Files can be stored in local storage as well as cloud storage such as Amazon, Google-cloud etc. Urls can be made fully secured by adding authorization to prevent unauthorized access of the files.

Images can be upload to the server using REST APIs as well as from the admin dashboard and the folders can be viewed with their respective files inside them.

screenshot1

Add authentication on URLs

  1. open - /etc/apache2/sites-available/Apache2Proxy.conf

  2. Compare the below content with yours and add the missing lines into your file
    -mainly ProxyPass and ProxyPassReverse is important

    <VirtualHost *:3000>
     ServerName localhost
     ServerAlias localhost
     ServerAdmin [email protected]
     ErrorLog ${APACHE_LOG_DIR}/error.log
     CustomLog ${APACHE_LOG_DIR}/access.log combined
     
     ProxyRequests on
    
     <Proxy *>
       Order deny,allow
       Allow from all
     </Proxy>
    
     ProxyPass / http://127.0.0.1:<your_app_server_port>/auth_check/
     ProxyPassReverse / http://127.0.0.1:<your_app_server_port>/auth_check/
    
     <Location />
       Order allow,deny
       Allow from all
     </Location>
     </VirtualHost>
    
  3. Restart Apache2 server - sudo service apache2 restart (check server should restart succesfully)

personal-storage-system-pss-'s People

Contributors

hungry-coder-byte avatar yashu-devs avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

personal-storage-system-pss-'s Issues

How does this work?

How does this work?

  1. Can you give me full guide of installing this on ngnix or some other servers?
  2. How to get user And pass
  3. How does it workkk please tell

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.