better formating
This commit is contained in:
parent
831094af31
commit
fbed56d253
1 changed files with 11 additions and 2 deletions
13
README.md
13
README.md
|
@ -103,21 +103,30 @@ GRANT ALL PRIVILEGES ON printer_manager_admin.* TO 'printer-manager-admin'@'loca
|
|||
FLUSH PRIVILEGES;
|
||||
exit;
|
||||
cp .env.example .env
|
||||
```
|
||||
vim .env (edit the db config)
|
||||
```
|
||||
php artisan key:generate
|
||||
php artisan migrate
|
||||
php artisan make:filament-user
|
||||
```
|
||||
```
|
||||
vim /etc/apache2/sites-enabled/000-default.conf (set DocumentRoot /var/www/html/printer-manager-admin/public)
|
||||
vim /etc/apache2/apache2.conf add the following:
|
||||
vim /etc/apache2/apache2.conf
|
||||
```
|
||||
add the following:
|
||||
```
|
||||
<Directory /var/www/html/printer-manager-admin/public>
|
||||
Options Indexes FollowSymLinks
|
||||
AllowOverride All
|
||||
Require all granted
|
||||
</Directory>
|
||||
```
|
||||
Then Run:
|
||||
```
|
||||
a2en enable rewrite
|
||||
systemctl restart apache2
|
||||
You are good to go!
|
||||
```
|
||||
You are good to go!
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue