Skip to content

Instantly share code, notes, and snippets.

@Qadadain
Created August 25, 2020 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Qadadain/aedb0740af6befb4218dc762276d7741 to your computer and use it in GitHub Desktop.
Save Qadadain/aedb0740af6befb4218dc762276d7741 to your computer and use it in GitHub Desktop.
Nginx basic configuration for symfony
server {
server_name monnomdedomaine.com www.monnomdedomaine.com;
root /var/www/nomduprojet/public;
index index index.php;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ ^/index.php(/|$) {
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_split_path_info ^(.+.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
internal;
}
location ~ \.php$ {
return 404;
}
error_log /var/log/nginx/project_error.log;
access_log /var/log/nginx/project_access.log;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment