Как можно сделать если нету куки connect.sid что бы nginx проксировал nodejs express ( 8080 порт ) и создалась данная кука и далее прогрузилась главная страница сайта ( 80 порт ) , а если есть кука connect.sid то просто загружаем главную ( 80 порт )
А щас у меня сразу проксирует на nodejs
server {
listen 80;
server_name server.ru www.server.ru;
#Configures the publicly served root directory
#Configures the index file to be served
root /var/www/site;
index index.html index.htm;
#These lines create a bypass for certain pathnames
#www.example.com/test.js is now routed to port 3000
#instead of port 80
location / {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_pass
http://server.ru:80;
}
}