KodeStar
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
23 additions and
0 deletions
-
readme.md
|
@ -2,6 +2,29 @@ |
|
|
|
|
|
|
|
|
An Application dashboard and launcher |
|
|
An Application dashboard and launcher |
|
|
|
|
|
|
|
|
|
|
|
## 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; |
|
|
|
|
|
} |
|
|
|
|
|
``` |
|
|
|
|
|
|
|
|
## License |
|
|
## License |
|
|
|
|
|
|
|
|
This app is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). |
|
|
This app is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). |
|
|