Alger Huang says to YSITDserver { listen 80; listen 443 ssl; ssl_certificate CRT; ssl_certificate_key KEY; server_name your-domain-name.com; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $http_host; proxy_pass http://127.0.0.1:8000; } location /problem { alias /var/www/html/problem; } location ~ [^/]\.php(/|$) { fastcgi_pass unix:/dev/shm/php-cgi.sock; fastcgi_index index.php; include fastcgi.conf; } } server { listen 8000; .......... .................. .................... ...... }at Wed, Nov 23, 2016 10:24 PM