-
-
Save udibagas/6cc65e706f4de54eff7098e69f40c1c4 to your computer and use it in GitHub Desktop.
Nginx Config for Moodle (with proper rewrite/paths)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name learn.mydomain.com; | |
return 301 https://learn.mydomain.com$request_uri; | |
} | |
server { | |
listen 443 ssl; | |
server_name learn.mydomain.com; | |
root "/srv/www/learn.mydomain.com"; | |
error_log /var/log/nginx/learn.mydomain.com-error.log; | |
access_log /var/log/nginx/learn.mydomain.com-access.log; | |
rewrite ^/(.*\.php)(/)(.*)$ /$1?file=/$3 last; | |
location / { | |
index index.php index.html index.htm; | |
try_files $uri $uri/ /index.php; | |
} | |
fastcgi_intercept_errors on; | |
location ~ \.php$ { | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
} | |
location ~ /\.ht { | |
deny all; | |
} | |
ssl_certificate /etc/nginx/ssl/mydomain.com.chained.crt; | |
ssl_certificate_key /etc/nginx/ssl/mydomain.com.key; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment