find /opt/lampp/htdocs -type d -exec chmod 755 {} \;
find /opt/lampp/htdocs -type f -exec chmod 644 {} \;
laravel storage 要給權限
sudo chmod -R 777 storage/
find /opt/lampp/htdocs -type d -exec chmod 755 {} \;
find /opt/lampp/htdocs -type f -exec chmod 644 {} \;
laravel storage 要給權限
sudo chmod -R 777 storage/
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/example.com.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
sudo a2ensite
example.com
sudo systemctl restart apache2
<VirtualHost *:80> ServerName domain.name ProxyRequests Off ProxyVia Block ProxyPreserveHost On <Proxy *...