TributePage.conf 479 B

12345678910111213141516171819202122
  1. server {
  2. listen 9000;
  3. server_name _;
  4. #charset koi8-r;
  5. #access_log logs/host.access.log main;
  6. location / {
  7. root /Users/xumingxin/Documents/my-tx-server-git/FreeCodeCamp/SurveyForm;
  8. index index.html index.htm;
  9. }
  10. #error_page 404 /404.html;
  11. # redirect server error pages to the static page /50x.html
  12. #
  13. error_page 500 502 503 504 /50x.html;
  14. location = /50x.html {
  15. root html;
  16. }
  17. }