> For the complete documentation index, see [llms.txt](https://prtechs-organization.gitbook.io/e2encrypt-frame-php/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prtechs-organization.gitbook.io/e2encrypt-frame-php/configurations/sample-config-file.md).

# Sample Config File

```php
<?php
class Config {
    //Domain
    public $domain = "localhost:8000";
    public $base_url = "http://localhost:8000";
    public $requireSSL = FALSE;
    public $same_domain = FALSE;

    //Database
    public $database = array(
        'host' => 'localhost',
        'user' => 'root',
        'pass' => '',
        'dbase' => 'test'
    );

    //Encryption
    public $encryption = true;
    // TODO: Change the Secret Key for Producional USE!
    public $secret_key = "1234@1345";
}
```
