@PitaJ said in warning in log x from '\' is deprecated:
@teh_g can you inspect the response headers to see if X-Powered-By: NodeBB
is there? If you made the changes to nginx, then those warnings should not be showing, unless the issue is that your theme uses the old paths.
I see the X-Powered-By: NodeBB
. Here is the response I get when going to my site (gamingexodus.com
access-control-allow-origin:null
cf-ray:344ade7fed9c7c28-LAX
content-encoding:gzip
content-security-policy:default-src 'self'; connect-src 'self' wss: https://api.github.com https://packages.nodebb.org https://bootswatch.com; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://iframely.gamingexodus.com https://storage.googleapis.com https://checkout.stripe.com https://s.imgur.com https://www.google.com https://www.gstatic.com; img-src 'self' data: https:; style-src 'self' 'unsafe-inline' https://maxcdn.bootstrapcdn.com https://fonts.googleapis.com; font-src 'self' https://maxcdn.bootstrapcdn.com https://fonts.gstatic.com; child-src https:; object-src 'none'
content-type:text/html; charset=utf-8
date:Fri, 24 Mar 2017 16:04:57 GMT
server:cloudflare-nginx
status:200
strict-transport-security:max-age=15552000; includeSubDomains; preload
vary:Accept-Encoding
x-content-type-options:nosniff
x-frame-options:SAMEORIGIN
x-powered-by:NodeBB
x-xss-protection:1; mode=block
I am using the Persona theme, so I'd imagine it is using the right paths 
Here is my location blocks from my nginx config
location @nodebb {
proxy_pass http://127.0.0.1:4567;
}
location ~ ^/assets/(.*) {
root /var/www/nodebb/forums/;
try_files /build/public/$1 /public/$1 @nodebb;
}
location /plugins/ {
root /var/www/nodebb/forums/build/public/;
try_files $uri @nodebb;
}
location / {
proxy_pass http://127.0.0.1:4567;
}