# # wallpaperjp.mobi configuration # server { listen 443 ssl; server_name www.wallpaperjp.mobi; # SSL ssl_certificate /etc/letsencrypt/live/wallpaperjp.mobi/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/wallpaperjp.mobi/privkey.pem; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3$ rewrite ^(.*) https://wallpaperjp.mobi$1 permanent; } server { listen 80; server_name wallpaperjp.mobi www.wallpaperjp.mobi; rewrite ^(.*) https://wallpaperjp.mobi$1 permanent; location / { root /home/wallpaperjp.mobi/public_html; index index.php index.html index.htm; try_files $uri $uri/ /index.php?q=$uri&$args; } error_page 404 /404.html; location = /404.html { root /home/wallpaperjp.mobi/public_html; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /home/wallpaperjp.mobi/public_html; } # pass the PHP scripts to FastCGI server # location ~ \.php$ { root /home/wallpaperjp.mobi/public_html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }