I will check.
I assume that the TastyIgniter application will work on a local IP-address, or is this incorrect?
I am running my websites behind a reverse proxy. Please find config below. Do I need to include the recommended config for NGIX in this reverse proxy?
server {
listen 80;
server_name rms.hetoudeposthuys.nl;
return 301 https://$server_name$request_uri;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
server {
client_max_body_size 50m;
listen 443 ssl;
server_name rms.hetoudeposthuys.nl;
ssl_certificate /opt/bitnami/nginx/conf/www3.hetoudeposthuys.nl.crt;
ssl_certificate_key /opt/bitnami/nginx/conf/www3.hetoudeposthuys.nl.key;
location / {
proxy_pass http://192.168.66.88:80;
proxy_set_header Host $host;
}
}