1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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;
- }
-
-
-
-
-
- }
|