-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnginx
More file actions
36 lines (27 loc) · 898 Bytes
/
nginx
File metadata and controls
36 lines (27 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
server {
listen 80;
listen [::]:80;
server_name your domain;
#root /srv/example.com/public;
# add_header X-Frame-Options "SAMEORIGIN";
# add_header X-Content-Type-Options "nosniff";
# index index.php;
# charset utf-8;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://localhost:8181;
#try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
#location ~ \.php$ {
# fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
# fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
# include fastcgi_params;
#}
location ~ /\.(?!well-known).* {
deny all;
}
}