123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- server {
- listen 80;
- listen [::]:80;
- root /var/www/html;
-
- index index.html index.htm index.php;
- server_name localhost;
- location / {
-
-
- try_files $uri $uri/ =404;
- }
-
-
- location ~ \.php$ {
- include snippets/fastcgi-php.conf;
-
-
- fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
- }
-
-
-
-
-
-
- }
|