There is a special TYPO3 server configuration for Nginx in the punkt.de Vagrant Box that has to be included in the default configuration.
sudo nano /usr/local/etc/nginx/conf.d/default.conf
You can use Joe and Vi to modify the file as well. Exchange common-neos.conf with common-typo3.conf.
server {
listen [::]:80;
listen 80 default_server;
server_name localhost;
root /var/www/Web/;
include /usr/local/etc/nginx/common-typo3.conf;
}
After that you should reload the configuration.
sudo service nginx reload
You need to delete the already created folder Web in /var/www. The TYPO3 packages will be downloaded with Composer.
cd /var/www
rm -rf Web
composer create-project typo3/cms-base-distribution .
MySQL
Username | Password |
---|
root | root |
typo3 | typo3 |