You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
745 B

7 years ago
![alt text](https://i.imgur.com/u4n6ZKs.jpg)
7 years ago
## About
7 years ago
7 years ago
An Application dashboard and launcher
7 years ago
7 years ago
## Web Server Configuration
### Apache
A .htaccess file ships with the app, however, if it does not work with your Apache installation, try this alternative:
```
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
```
### Nginx
If you are using Nginx, the following directive in your site configuration will direct all requests to the index.php front controller:
```
location / {
try_files $uri $uri/ /index.php?$query_string;
}
```
7 years ago
## License
7 years ago
This app is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).