pulunomoe / puluauth

Super simple, client credentials grant only OAuth2 server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pulunomoe/puluauth

Super simple, client credentials grant only OAuth2 server. Build on top of PHPLeague's OAuth2 server.

Requirements

  • PHP 8+
  • PDO extension

Usage

  1. Clone this repository.
  2. Install the dependencies:
    composer install && composer dump-autoload.
  3. Run the database scripts inside the db directory.
  4. Generate a private key:
    openssl genrsa -aes128 -passout pass:YOUR_PASSWORD_HERE_ -out private.key 2048
  5. Generate a public key:
    openssl rsa -in private.key -passin pass:YOUR_PASSWORD_HERE -pubout -out public.key
  6. Generate an encryption key:
    vendor/bin/generate-defuse-key > defuse.key
  7. Put the keys inside the keys directory (make sure it's not publicly accessible!)
  8. Change the access level of the keys to 600, i.e:
    chmod 600 *.keys
  9. Run the app with your web server, with the public directory as the root directory.
  10. Open the admin panel (/admin/login), use the default admin username and password configuration: admin / admin
  11. Change your admin password.
  12. Optionally, modify your network so the /admin path only accessible from trusted hosts.

Changelog

  • v0.1 : Initial version

About

Super simple, client credentials grant only OAuth2 server

License:MIT License


Languages

Language:PHP 54.5%Language:Twig 39.8%Language:CSS 5.6%Language:Batchfile 0.1%