Hi there,
On Linux installation without vm with the needed systemrequirements the Zed Website is empty.
It Only contains empty head an body
Here is my zed Vhost:
server {
server_name zed.de.spryker.local;
listen 80 ;
access_log /var/log/nginx/zed.de.spryker.local.access.log;
root /home/pbeothig/Dokumente/spryker/public/Zed;
Timeout for Zed requests - 10 minutes
(longer requests should be converted to jobs and executed via jenkins)
proxy_read_timeout 600s;
proxy_send_timeout 600s;
fastcgi_read_timeout 600s;
client_body_timeout 600s;
client_header_timeout 600s;
send_timeout 600s;
Static files can be delivered directly
location ~ (/images/|/scripts|/styles|/fonts|/bundles|/favicon.ico|/robots.txt) {
access_log off;
expires 30d;
add_header Pragma public;
add_header Cache-Control “public, must-revalidate, proxy-revalidate”;
try_files $uri =404;
}
Payone - PHP application gets all other requests without authorized
location /payone/ {
auth_basic off;
add_header X-Server $hostname;
try_files $uri @rewriteapp;
}
location ~ .php$ {
#include snippets/fastcgi-php.conf
With php7.1-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php7.1-fpm:
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
}
PHP application gets all other requests
location / {
#add_header X-Server $hostname;
try_files $uri @rewriteapp;
#more_clear_headers ‘X-Powered-By’ ‘X-Store’ ‘X-Locale’ ‘X-Env’ ‘Server’;
}
location @rewriteapp {
# rewrite all to app.php
rewrite ^(.*)$ /index.php last;
}
}