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.

nginx.cfg 207 B

5 years ago
5 years ago
123456789101112
  1. server {
  2. listen 80 default_server;
  3. root /var/www/wx;
  4. index index.html index.htm index.nginx-debian.html;
  5. autoindex on;
  6. server_name wx.home wx.reyni.co;
  7. location / {
  8. try_files $uri $uri/ =404;
  9. }
  10. }