40 lines
1.0 KiB
Nginx Configuration File
40 lines
1.0 KiB
Nginx Configuration File
|
|
server {
|
|
listen 80;
|
|
index index.php index.html;
|
|
server_name localhost;
|
|
root /var/www/html/public;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
fastcgi_pass laravel:9000;
|
|
fastcgi_index index.php;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
include fastcgi_params;
|
|
}
|
|
|
|
# Security headers (optional but recommended)
|
|
add_header X-Frame-Options DENY;
|
|
add_header X-Content-Type-Options nosniff;
|
|
add_header X-XSS-Protection "1; mode=block";
|
|
}
|
|
|
|
# server {
|
|
# listen 80;
|
|
# index index.php index.html;
|
|
# server_name localhost;
|
|
# root /var/www/html/public;
|
|
# location / {
|
|
# try_files $uri $uri/ /index.php?$query_string;
|
|
# }
|
|
# location ~ \.php$ {
|
|
# fastcgi_pass laravel:9000;
|
|
# fastcgi_index index.php;
|
|
# fastcgi_param SCRIPT_FILENAME
|
|
# $document_root$fastcgi_script_name;
|
|
# include fastcgi_params;
|
|
# }
|
|
# } |