Comments on How to Install Pimcore CMS on Ubuntu 18.04 LTS
Pimcore is a free and open-source enterprise content management system written in PHP language and uses MySQL/MariaDB for databases. It is fast, flexible, and designer and developer-friendly that allow us to manage and share all of our digital assets across any channel.
2 Comment(s)
Add comment
Comments
By: Burak
Hey,
thanks for sharing this tutorial.
First time using Nginx, and thats the Point where i am stuck :
server { listen 80; listen [::]:80; root /var/www/html/pimcore; index index.php index.html index.htm; server_name local.pimcore.com www.local.pimcore.com; client_max_body_size 100M; location / { try_files $uri /app.php$is_args$args; } location ~ ^/app\.php(/|$) { include snippets/fastcgi-php.conf; fastcgi_pass unix:/var/run/php/php7.1-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; send_timeout 1800; fastcgi_read_timeout 1800; include fastcgi_params; } }is what i have in my nginx file. I restarted but cant access the page?
Can you Help us?
Thanks
Burak
By: Barney
Same here.
The config file points to a file which isn't on a default system, and the author doesn't explain where it comes from or what it should contain!