2021-08-07 10:37:01 +00:00
|
|
|
# kvazar-network webapp
|
2022-04-24 16:44:10 +00:00
|
|
|
Web-oriented content exploring platform for Kevacoin Blockchain
|
|
|
|
|
|
|
|
### requirements
|
|
|
|
```
|
|
|
|
php-7.4
|
|
|
|
php-curl
|
|
|
|
php-mbstring
|
|
|
|
php-mysql
|
2022-04-24 17:08:30 +00:00
|
|
|
php-bcmath
|
|
|
|
php-gd
|
2022-04-24 16:44:10 +00:00
|
|
|
```
|
2022-04-24 17:25:11 +00:00
|
|
|
#### database
|
2022-04-24 16:44:10 +00:00
|
|
|
|
2022-04-24 17:25:11 +00:00
|
|
|
https://github.com/kvazar-network/database
|
2021-08-07 10:37:01 +00:00
|
|
|
|
2022-04-24 19:26:10 +00:00
|
|
|
### nginx sef_mode example
|
2022-04-24 19:24:32 +00:00
|
|
|
|
|
|
|
```
|
2022-04-24 19:25:12 +00:00
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ =404 @sef;
|
|
|
|
}
|
2022-04-24 19:24:32 +00:00
|
|
|
|
2022-04-24 19:25:12 +00:00
|
|
|
location @sef {
|
|
|
|
rewrite ^(/.*)$ /?$1 last;
|
|
|
|
}
|
2022-04-24 19:24:32 +00:00
|
|
|
```
|
|
|
|
|
2022-04-24 17:25:11 +00:00
|
|
|
### webapp example
|
2022-04-24 16:19:44 +00:00
|
|
|
https://kvazar.today
|