The idea is to make install guides and better descriptive files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default 283B

12345678910111213
  1. server {
  2. root /var/www;
  3. index index.php index.html index.htm;
  4. server_name put.your.domain.here;
  5. location / {
  6. try_files $uri $uri/ =404;}
  7. location ~ \.php$ {
  8. include snippets/fastcgi-php.conf;
  9. fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;}
  10. location ~ /\.ht {
  11. deny all;}
  12. }