Skip to content

Commit

Permalink
Modified css
Browse files Browse the repository at this point in the history
  • Loading branch information
blackbird7112 committed Jun 23, 2021
1 parent 7fce8e6 commit 165415b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions config/mvc.lib.local.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName mvc.sdslabs.local
# Change the path below to wherever your application's public folder is in your system
DocumentRoot /home/rohithvb/Rohith/mvc/public
# Change the path below too
<Directory /home/rohithvb/Rohith/mvc/public>
#Do not show indexes
#Do not follow symlinks
Options -Indexes -MultiViews
#Order allow,deny
Require all granted
Allowoverride All
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
</Directory>
ErrorLog /var/log/apache2/lib.error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/lib.access.log combined
</VirtualHost>

0 comments on commit 165415b

Please sign in to comment.