Maj nginx deploy script

Former-commit-id: 8f86249b503cc99eb51aa0e2f6418984c7028a2b
Former-commit-id: c227ba94647a2bbd98dcb99c2932fc98bfd9e0a3 [formerly f91ec0259788c8d95d8b2d6f0ca1624c05d752a5 [formerly f91ec0259788c8d95d8b2d6f0ca1624c05d752a5 [formerly f91ec0259788c8d95d8b2d6f0ca1624c05d752a5 [formerly 615a1c9cb080ac1782c9a01500a18ea48b7c6c17]]]]
Former-commit-id: 09305c9c082551b7ea773653d03ae84cc075ead8
Former-commit-id: 6dc605dd97cabdb34bf716d4e2c988aeb6a13a10
Former-commit-id: dc5754c4759eebea7af2f875756d41b49c99fbf3
Former-commit-id: 22effb2855b668e46246c5710fe5116474104de3 [formerly cdfb595314ea4bddc5ce722ee86741a35e9c6e43]
Former-commit-id: b07358161e388e85db86b7d233993797158f9f1a
This commit is contained in:
Erèbe 2016-08-26 23:04:13 +02:00
parent e80ec9be76
commit 4a704f0bd3

View file

@ -1,27 +1,9 @@
# You may add here your
# server {
# ...
# }
# statements for each of your virtual hosts to this file
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##
server {
listen *:443 ssl;
listen [::]:443 ssl;
server_name erebe.eu;
server_name 195.154.67.145;
server_name 2001:bc8:3d8f::cafe;
location / {
@ -37,43 +19,3 @@ server {
}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# root html;
# index index.html index.htm;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}
# HTTPS server
#
#server {
# listen 443;
# server_name localhost;
#
# root html;
# index index.html index.htm;
#
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
#
# ssl_session_timeout 5m;
#
# ssl_protocols SSLv3 TLSv1;
# ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
# ssl_prefer_server_ciphers on;
#
# location / {
# try_files $uri $uri/ =404;
# }
#}