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 303B

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