/csr.ninja

Another CSR Generator

Primary LanguagePHP

Codacy Badge

csr.ninja

Another CSR Generator.

Why Another CSR Generator?

Every year my clients asked for the KEY used to generate the CSR, now with the csr.ninja they receive it by email!

How do I install?

$ cd /opt
$ git clone https://github.com/udlei/cst.ninja.git
$ sudo yum install php56
$ sudo yum install php-pear
$ sudo pear install Mail
$ sudo pear install Net_SMTP
$ sudo vim /etc/httpd/conf.d/csr.ninja.conf

<VirtualHost *:80>
    DocumentRoot /opt/csr.ninja/public_html
    ServerName csr.ninja

    <Directory /opt/csr.ninja/public_html>
        AllowOverride None
        Require all granted
    </Directory>
</VirtualHost>

$ sudo vim /etc/smtp.conf

{
    "host": "your-smtp-host",
    "username": "your-username",
    "password": "your-password"
}

$ sudo /etc/init.d/httpd restart