Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen 80;
- listen 443 ssl;
- server_name www.ucapan.me ucapan.me;
- ssl_certificate /etc/nginx/ssl/ucapan_me.crt;
- ssl_certificate_key /etc/nginx/ssl/myserver.key;
- root /usr/share/nginx/html/ucapan.me/public_html;
- index index.php index.html index.htm;
- if ($host ~* ^www\.(.*))
- {
- set $host_without_www $1;
- rewrite ^/(.*)$ https://$host_without_www/$1 permanent;
- }
- location / {
- try_files $uri $uri/ /index.php?q=$uri&$args;
- }
- location ~ \.php$ {
- fastcgi_pass unix:/var/run/php5-fpm.sock;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include fastcgi_params;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement