Advertisement
Guest User

Untitled

a guest
Aug 30th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 3.01 KB | None | 0 0
  1. # You may add here your
  2. # server {
  3. #   ...
  4. # }
  5. # statements for each of your virtual hosts to this file
  6.  
  7. ##
  8. # You should look at the following URL's in order to grasp a solid understanding
  9. # of Nginx configuration files in order to fully unleash the power of Nginx.
  10. # http://wiki.nginx.org/Pitfalls
  11. # http://wiki.nginx.org/QuickStart
  12. # http://wiki.nginx.org/Configuration
  13. #
  14. # Generally, you will want to move this file somewhere, and start with a clean
  15. # file but keep this around for reference. Or just disable in sites-enabled.
  16. #
  17. # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
  18. ##
  19.  
  20. server {
  21.     listen 80 default_server;
  22.     listen [::]:80 default_server ipv6only=on;
  23.  
  24.     root /usr/share/nginx/html;
  25.     index index.html index.htm;
  26.  
  27.     # Make site accessible from http://localhost/
  28.     server_name localhost;
  29.  
  30.     location / {
  31.         # First attempt to serve request as file, then
  32.         # as directory, then fall back to displaying a 404.
  33.         try_files $uri $uri/ =404;
  34.         # Uncomment to enable naxsi on this location
  35.         # include /etc/nginx/naxsi.rules
  36.     }
  37.  
  38.         # pass PHP scripts to FastCGI server
  39.         #
  40.         location ~ \.php$ {
  41.                include snippets/fastcgi-php.conf;
  42.         #
  43.         #       # With php-fpm (or other unix sockets):
  44.                fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
  45.         #       # With php-cgi (or other tcp sockets):
  46.         #       fastcgi_pass 127.0.0.1:9000;
  47.         }
  48.  
  49.     # Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
  50.     #location /RequestDenied {
  51.     #   proxy_pass http://127.0.0.1:8080;    
  52.     #}
  53.  
  54.     #error_page 404 /404.html;
  55.  
  56.     # redirect server error pages to the static page /50x.html
  57.     #
  58.     #error_page 500 502 503 504 /50x.html;
  59.     #location = /50x.html {
  60.     #   root /usr/share/nginx/html;
  61.     #}
  62.  
  63.     # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  64.     #
  65.     #location ~ \.php$ {
  66.     #   fastcgi_split_path_info ^(.+\.php)(/.+)$;
  67.     #   # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
  68.     #
  69.     #   # With php5-cgi alone:
  70.     #   fastcgi_pass 127.0.0.1:9000;
  71.     #   # With php5-fpm:
  72.     #   fastcgi_pass unix:/var/run/php5-fpm.sock;
  73.     #   fastcgi_index index.php;
  74.     #   include fastcgi_params;
  75.     #}
  76.  
  77.     # deny access to .htaccess files, if Apache's document root
  78.     # concurs with nginx's one
  79.     #
  80.     #location ~ /\.ht {
  81.     #   deny all;
  82.     #}
  83. }
  84.  
  85.  
  86. # another virtual host using mix of IP-, name-, and port-based configuration
  87. #
  88. #server {
  89. #   listen 8000;
  90. #   listen somename:8080;
  91. #   server_name somename alias another.alias;
  92. #   root html;
  93. #   index index.html index.htm;
  94. #
  95. #   location / {
  96. #       try_files $uri $uri/ =404;
  97. #   }
  98. #}
  99.  
  100.  
  101. # HTTPS server
  102. #
  103. #server {
  104. #   listen 443;
  105. #   server_name localhost;
  106. #
  107. #   root html;
  108. #   index index.html index.htm;
  109. #
  110. #   ssl on;
  111. #   ssl_certificate cert.pem;
  112. #   ssl_certificate_key cert.key;
  113. #
  114. #   ssl_session_timeout 5m;
  115. #
  116. #   ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
  117. #   ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
  118. #   ssl_prefer_server_ciphers on;
  119. #
  120. #   location / {
  121. #       try_files $uri $uri/ =404;
  122. #   }
  123. #}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement