12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- server {
- listen 80 default_server;
- listen [::]:80 default_server;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- root /var/www/html;
-
- 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/php7.3-fpm.sock;
-
-
- }
-
-
-
-
-
-
- }
|