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