-
-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathapache-vvveb.conf
More file actions
executable file
·27 lines (22 loc) · 772 Bytes
/
apache-vvveb.conf
File metadata and controls
executable file
·27 lines (22 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#replace /var/www/html/vvveb/public with your vvveb website public folder and set server_name for your domain
#copy this file to /etc/apache2/sites-available/
#sudo ln -s /etc/apache2/sites-available/apache-vvveb.conf /etc/nginx/sites-enabled/apache-vvveb.conf
<VirtualHost *:80>
#ServerName www.vvveb.com
DocumentRoot /var/www/html/vvveb/public
<Directory />
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<Directory /var/www/html/vvveb/public>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<Directory /var/www/html/vvveb/public/media>
AllowOverride None
Options -ExecCGI -Includes
php_admin_flag engine off
</Directory>
</VirtualHost>