123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- server {
- listen 80 default_server;
- listen [::]:80 default_server;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- root /var/www/html;
- client_max_body_size 256m;
-
- index index.html index.php index.nginx-debian.html;
- server_name _;
- location / {
-
-
- try_files $uri $uri/ =404;
- }
-
-
- location ~ .*\.php(\/.*)*$ {
- include snippets/fastcgi-php.conf;
-
-
- fastcgi_pass unix:/run/php/php8.2-fpm.sock;
-
-
- }
-
-
-
-
-
-
- }
|