Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 1 | |
Aleš Komárek | 296a844 | 2017-04-11 13:22:35 +0200 | [diff] [blame] | 2 | ============= |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 3 | Usage |
Aleš Komárek | 296a844 | 2017-04-11 13:22:35 +0200 | [diff] [blame] | 4 | ============= |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 5 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 6 | Nginx is an open source reverse proxy server for HTTP, HTTPS, |
| 7 | SMTP, POP3, and IMAP protocols, as well as a load balancer, |
| 8 | HTTP cache, and a web server (origin server). The nginx project |
| 9 | started with a strong focus on high concurrency, high performance |
| 10 | and low memory usage. |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 11 | |
Aleš Komárek | 296a844 | 2017-04-11 13:22:35 +0200 | [diff] [blame] | 12 | Sample Pillars |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 13 | ============== |
| 14 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 15 | Gitlab server setup: |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 16 | |
| 17 | .. code-block:: yaml |
| 18 | |
| 19 | nginx: |
| 20 | server: |
| 21 | enabled: true |
| 22 | bind: |
| 23 | address: '0.0.0.0' |
| 24 | ports: |
| 25 | - 80 |
| 26 | site: |
| 27 | gitlab_domain: |
| 28 | enabled: true |
| 29 | type: gitlab |
| 30 | name: domain |
| 31 | ssl: |
| 32 | enabled: true |
| 33 | key: | |
| 34 | -----BEGIN RSA PRIVATE KEY----- |
| 35 | ... |
| 36 | cert: | |
| 37 | xyz |
| 38 | chain: | |
| 39 | my_chain.. |
| 40 | host: |
| 41 | name: gitlab.domain.com |
| 42 | port: 80 |
| 43 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 44 | Simple static HTTP site: |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 45 | |
| 46 | .. code-block:: yaml |
| 47 | |
| 48 | nginx: |
| 49 | server: |
| 50 | site: |
| 51 | nginx_static_site01: |
| 52 | enabled: true |
Niklaus Giger | 23096b2 | 2017-06-30 16:41:49 +0200 | [diff] [blame] | 53 | type: nginx_static |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 54 | name: site01 |
| 55 | host: |
| 56 | name: gitlab.domain.com |
| 57 | port: 80 |
| 58 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 59 | Simple load balancer: |
Dmitry Stremkovskiy | 52145c6 | 2017-08-21 23:42:17 +0300 | [diff] [blame] | 60 | |
| 61 | .. code-block:: yaml |
| 62 | |
| 63 | nginx: |
| 64 | server: |
| 65 | upstream: |
| 66 | horizon-upstream: |
| 67 | backend1: |
| 68 | address: 10.10.10.113 |
| 69 | port: 8078 |
| 70 | opts: weight=3 |
| 71 | backend2: |
| 72 | address: 10.10.10.114 |
| 73 | site: |
| 74 | nginx_proxy_openstack_web: |
| 75 | enabled: true |
| 76 | type: nginx_proxy |
| 77 | name: openstack_web |
| 78 | proxy: |
| 79 | upstream_proxy_pass: http://horizon-upstream |
| 80 | host: |
| 81 | name: 192.168.0.1 |
| 82 | port: 31337 |
| 83 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 84 | Static site with access policy: |
Adam Tengler | e7746cb | 2016-04-27 19:01:25 +0200 | [diff] [blame] | 85 | |
| 86 | .. code-block:: yaml |
| 87 | |
| 88 | nginx: |
| 89 | server: |
| 90 | site: |
| 91 | nginx_static_site01: |
| 92 | enabled: true |
Niklaus Giger | 23096b2 | 2017-06-30 16:41:49 +0200 | [diff] [blame] | 93 | type: nginx_static |
Adam Tengler | e7746cb | 2016-04-27 19:01:25 +0200 | [diff] [blame] | 94 | name: site01 |
| 95 | access_policy: |
| 96 | allow: |
| 97 | - 192.168.1.1/24 |
| 98 | - 127.0.0.1 |
| 99 | deny: |
| 100 | - 192.168.1.2 |
| 101 | - all |
| 102 | host: |
| 103 | name: gitlab.domain.com |
| 104 | port: 80 |
| 105 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 106 | Simple TCP/UDP proxy: |
Dmitry Stremkovskiy | 6484afa | 2017-08-22 17:07:06 +0300 | [diff] [blame] | 107 | |
| 108 | .. code-block:: yaml |
| 109 | |
| 110 | nginx: |
| 111 | server: |
| 112 | stream: |
| 113 | rabbitmq: |
| 114 | host: |
| 115 | port: 5672 |
| 116 | backend: |
| 117 | server1: |
| 118 | address: 10.10.10.113 |
| 119 | port: 5672 |
| 120 | least_conn: true |
| 121 | hash: "$remote_addr consistent" |
| 122 | unbound: |
| 123 | host: |
| 124 | bind: 127.0.0.1 |
| 125 | port: 53 |
| 126 | protocol: udp |
| 127 | backend: |
| 128 | server1: |
| 129 | address: 10.10.10.113 |
| 130 | port: 5353 |
| 131 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 132 | Simple HTTP proxy: |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 133 | |
| 134 | .. code-block:: yaml |
| 135 | |
| 136 | nginx: |
| 137 | server: |
| 138 | site: |
| 139 | nginx_proxy_site01: |
| 140 | enabled: true |
Niklaus Giger | 23096b2 | 2017-06-30 16:41:49 +0200 | [diff] [blame] | 141 | type: nginx_proxy |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 142 | name: site01 |
| 143 | proxy: |
| 144 | host: local.domain.com |
| 145 | port: 80 |
| 146 | protocol: http |
| 147 | host: |
| 148 | name: gitlab.domain.com |
| 149 | port: 80 |
| 150 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 151 | Simple HTTP proxy with multiple locations: |
| 152 | |
| 153 | .. note:: If proxy part is defined and location is missing ``/``, |
| 154 | the proxy part is used. If the ``/`` location is defined, |
| 155 | it overrides the proxy part. |
Jakub Josef | 83f7acf | 2018-04-09 16:05:49 +0200 | [diff] [blame] | 156 | |
| 157 | .. code-block:: yaml |
| 158 | |
| 159 | nginx: |
| 160 | server: |
| 161 | site: |
| 162 | nginx_proxy_site01: |
| 163 | enabled: true |
| 164 | type: nginx_proxy |
| 165 | name: site01 |
| 166 | proxy: |
| 167 | host: local.domain.com |
| 168 | port: 80 |
| 169 | protocol: http |
| 170 | location: |
| 171 | /internal/: |
| 172 | host: 172.120.10.200 |
| 173 | port: 80 |
| 174 | protocol: http |
| 175 | /doc/: |
| 176 | host: 172.10.10.200 |
| 177 | port: 80 |
| 178 | protocol: http |
| 179 | host: |
| 180 | name: gitlab.domain.com |
| 181 | port: 80 |
| 182 | |
| 183 | .. code-block:: yaml |
| 184 | |
| 185 | nginx: |
| 186 | server: |
| 187 | site: |
| 188 | nginx_proxy_site01: |
| 189 | enabled: true |
| 190 | type: nginx_proxy |
| 191 | name: site01 |
| 192 | location: |
| 193 | /: |
| 194 | host: 172.120.10.200 |
| 195 | port: 80 |
| 196 | protocol: http |
| 197 | /doc/: |
| 198 | host: 172.10.10.200 |
| 199 | port: 80 |
| 200 | protocol: http |
| 201 | host: |
| 202 | name: gitlab.domain.com |
| 203 | port: 80 |
| 204 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 205 | Simple Websocket proxy: |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 206 | |
| 207 | .. code-block:: yaml |
| 208 | |
| 209 | nginx: |
| 210 | server: |
| 211 | site: |
| 212 | nginx_proxy_site02: |
| 213 | enabled: true |
Niklaus Giger | 23096b2 | 2017-06-30 16:41:49 +0200 | [diff] [blame] | 214 | type: nginx_proxy |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 215 | name: site02 |
| 216 | proxy: |
| 217 | websocket: true |
| 218 | host: local.domain.com |
| 219 | port: 80 |
| 220 | protocol: http |
| 221 | host: |
| 222 | name: gitlab.domain.com |
| 223 | port: 80 |
| 224 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 225 | Content filtering proxy: |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 226 | |
| 227 | .. code-block:: yaml |
| 228 | |
| 229 | nginx: |
| 230 | server: |
| 231 | enabled: true |
| 232 | site: |
| 233 | nginx_proxy_site03: |
| 234 | enabled: true |
Niklaus Giger | 23096b2 | 2017-06-30 16:41:49 +0200 | [diff] [blame] | 235 | type: nginx_proxy |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 236 | name: site03 |
| 237 | proxy: |
| 238 | host: local.domain.com |
| 239 | port: 80 |
| 240 | protocol: http |
| 241 | filter: |
| 242 | search: https://www.domain.com |
| 243 | replace: http://10.10.10.10 |
| 244 | host: |
| 245 | name: gitlab.domain.com |
| 246 | port: 80 |
| 247 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 248 | Proxy with access policy: |
Adam Tengler | e7746cb | 2016-04-27 19:01:25 +0200 | [diff] [blame] | 249 | |
| 250 | .. code-block:: yaml |
| 251 | |
| 252 | nginx: |
| 253 | server: |
| 254 | site: |
| 255 | nginx_proxy_site01: |
| 256 | enabled: true |
Niklaus Giger | 23096b2 | 2017-06-30 16:41:49 +0200 | [diff] [blame] | 257 | type: nginx_proxy |
Adam Tengler | e7746cb | 2016-04-27 19:01:25 +0200 | [diff] [blame] | 258 | name: site01 |
| 259 | access_policy: |
| 260 | allow: |
| 261 | - 192.168.1.1/24 |
| 262 | - 127.0.0.1 |
| 263 | deny: |
| 264 | - 192.168.1.2 |
| 265 | - all |
| 266 | proxy: |
| 267 | host: local.domain.com |
| 268 | port: 80 |
| 269 | protocol: http |
| 270 | host: |
| 271 | name: gitlab.domain.com |
| 272 | port: 80 |
| 273 | |
Michel Nederlof | eb5dd23 | 2018-03-13 13:57:34 +0100 | [diff] [blame] | 274 | Proxy with rate limiting scheme: |
| 275 | |
| 276 | .. code-block:: yaml |
| 277 | |
| 278 | _dollar: '$' |
| 279 | nginx: |
| 280 | server: |
| 281 | site: |
| 282 | nginx_proxy_site01: |
| 283 | enabled: true |
| 284 | type: nginx_proxy |
| 285 | name: site01 |
| 286 | proxy: |
| 287 | host: local.domain.com |
| 288 | port: 80 |
| 289 | protocol: http |
| 290 | host: |
| 291 | name: gitlab.domain.com |
| 292 | port: 80 |
| 293 | limit: |
| 294 | enabled: True |
| 295 | ip_whitelist: |
| 296 | - 127.0.0.1 |
| 297 | burst: 600 |
| 298 | rate: 10r/s |
| 299 | nodelay: True |
| 300 | subfilters: |
| 301 | heavy_url: |
| 302 | input: ${_dollar}{binary_remote_addr}${_dollar}{request_uri} |
| 303 | mode: blacklist |
| 304 | items: |
| 305 | - "~.*servers/detail[?]name=.*&status=ACTIVE" |
| 306 | rate: 2r/m |
| 307 | burst: 2 |
| 308 | nodelay: True |
| 309 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 310 | Gitlab server with user for basic auth: |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 311 | |
| 312 | .. code-block:: yaml |
| 313 | |
| 314 | nginx: |
| 315 | server: |
| 316 | enabled: true |
| 317 | user: |
| 318 | username1: |
| 319 | enabled: true |
| 320 | password: magicunicorn |
| 321 | htpasswd: htpasswd-site1 |
| 322 | username2: |
| 323 | enabled: true |
| 324 | password: magicunicorn |
| 325 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 326 | Proxy buffering: |
Ales Komarek | d77b797 | 2015-11-12 11:02:39 +0100 | [diff] [blame] | 327 | |
| 328 | .. code-block:: yaml |
| 329 | |
| 330 | nginx: |
| 331 | server: |
| 332 | enabled: true |
| 333 | bind: |
| 334 | address: '0.0.0.0' |
| 335 | ports: |
| 336 | - 80 |
| 337 | site: |
| 338 | gitlab_proxy: |
| 339 | enabled: true |
Niklaus Giger | 23096b2 | 2017-06-30 16:41:49 +0200 | [diff] [blame] | 340 | type: nginx_proxy |
Ales Komarek | d77b797 | 2015-11-12 11:02:39 +0100 | [diff] [blame] | 341 | proxy: |
Ondrej Smola | 5e177bc | 2017-12-07 12:55:23 +0100 | [diff] [blame] | 342 | request_buffer: false |
Ales Komarek | d77b797 | 2015-11-12 11:02:39 +0100 | [diff] [blame] | 343 | buffer: |
| 344 | number: 8 |
| 345 | size: 16 |
| 346 | host: |
| 347 | name: gitlab.domain.com |
| 348 | port: 80 |
| 349 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 350 | Let's Encrypt: |
Michael Kutý | 3a5abf1 | 2015-12-04 21:03:33 +0100 | [diff] [blame] | 351 | |
| 352 | .. code-block:: yaml |
| 353 | |
| 354 | nginx: |
| 355 | server: |
| 356 | enabled: true |
| 357 | bind: |
| 358 | address: '0.0.0.0' |
| 359 | ports: |
| 360 | - 443 |
| 361 | site: |
| 362 | gitlab_domain: |
| 363 | enabled: true |
| 364 | type: gitlab |
| 365 | name: domain |
| 366 | ssl: |
| 367 | enabled: true |
| 368 | engine: letsencrypt |
| 369 | host: |
| 370 | name: gitlab.domain.com |
| 371 | port: 443 |
| 372 | |
Filip Pytloun | e0f7551 | 2016-11-03 14:34:26 +0100 | [diff] [blame] | 373 | SSL using already deployed key and cert file. |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 374 | |
| 375 | .. note:: The cert file should already contain CA cert and |
| 376 | complete chain. |
Filip Pytloun | e0f7551 | 2016-11-03 14:34:26 +0100 | [diff] [blame] | 377 | |
| 378 | .. code-block:: yaml |
| 379 | |
| 380 | nginx: |
| 381 | server: |
| 382 | enabled: true |
| 383 | site: |
| 384 | mysite: |
| 385 | ssl: |
| 386 | enabled: true |
| 387 | key_file: /etc/ssl/private/mykey.key |
| 388 | cert_file: /etc/ssl/cert/mycert.crt |
| 389 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 390 | Advanced SSL configuration, more information about SSL option |
| 391 | may be found at http://nginx.org/en/docs/http/ngx_http_ssl_module.html |
| 392 | |
| 393 | .. note:: Prior to nginx 1.11.0, only one type of ecdh curve |
| 394 | can be applied in ``ssl_ecdh_curve directive``. |
| 395 | |
| 396 | if mode = ``secure`` or mode = ``normal`` and ``ciphers`` |
| 397 | or ``protocols`` are set, they should have type ``string``. |
| 398 | If mode = ``manual``, their type should be ``dict`` |
| 399 | as shown below. |
Vasyl Saienko | d3348f6 | 2018-02-09 20:08:01 +0200 | [diff] [blame] | 400 | |
| 401 | .. code-block:: yaml |
| 402 | |
| 403 | nginx: |
| 404 | server: |
| 405 | enabled: true |
| 406 | site: |
| 407 | mysite: |
| 408 | ssl: |
| 409 | enabled: true |
| 410 | mode: 'manual' |
| 411 | key_file: /srv/salt/pki/${_param:cluster_name}/${salt:minion:cert:proxy:common_name}.key |
| 412 | cert_file: /srv/salt/pki/${_param:cluster_name}/${salt:minion:cert:proxy:common_name}.crt |
| 413 | chain_file: /srv/salt/pki/${_param:cluster_name}/${salt:minion:cert:proxy:common_name}-with-chain.crt |
| 414 | protocols: |
| 415 | TLS1: |
| 416 | name: 'TLSv1' |
| 417 | enabled: True |
| 418 | TLS1_1: |
| 419 | name: 'TLSv1.1' |
| 420 | enabled: True |
| 421 | TLS1_2: |
| 422 | name: 'TLSv1.2' |
| 423 | enabled: False |
| 424 | ciphers: |
| 425 | ECDHE_RSA_AES256_GCM_SHA384: |
| 426 | name: 'ECDHE-RSA-AES256-GCM-SHA384' |
| 427 | enabled: True |
| 428 | ECDHE_ECDSA_AES256_GCM_SHA384: |
| 429 | name: 'ECDHE-ECDSA-AES256-GCM-SHA384' |
| 430 | enabled: True |
| 431 | buffer_size: '16k' |
| 432 | crl: |
| 433 | file: '/etc/ssl/crl.pem' |
| 434 | enabled: False |
| 435 | dhparam: |
| 436 | enabled: True |
| 437 | numbits: 2048 |
| 438 | ecdh_curve: |
| 439 | secp384r1: |
| 440 | name: 'secp384r1' |
| 441 | enabled: False |
| 442 | secp521r1: |
| 443 | name: 'secp521r1' |
| 444 | enabled: True |
| 445 | password_file: |
| 446 | content: 'testcontent22' |
| 447 | enabled: True |
| 448 | file: '/etc/ssl/password.key' |
| 449 | prefer_server_ciphers: 'on' |
| 450 | ticket_key: |
| 451 | enabled: True |
| 452 | numbytes: 48 |
| 453 | resolver: |
| 454 | address: '127.0.0.1' |
| 455 | valid_seconds: '500' |
| 456 | timeout_seconds: '60' |
| 457 | session_tickets: 'on' |
| 458 | stapling: 'off' |
| 459 | stapling_file: '/path/to/stapling/file' |
| 460 | stapling_responder: 'http://ocsp.example.com/' |
| 461 | stapling_verify: 'on' |
| 462 | verify_client: 'on' |
| 463 | client_certificate: |
| 464 | file: '/etc/ssl/client_cert.pem' |
| 465 | enabled: False |
| 466 | verify_depth: 1 |
| 467 | session_cache: 'shared:SSL:15m' |
| 468 | session_timeout: '15m' |
Adam Tengler | 5c64af6 | 2018-06-22 12:17:55 +0000 | [diff] [blame] | 469 | strict_transport_security: |
| 470 | max_age: 16000000 |
| 471 | include_subdomains: False |
| 472 | always: true |
| 473 | enabled: true |
Vasyl Saienko | d3348f6 | 2018-02-09 20:08:01 +0200 | [diff] [blame] | 474 | |
Vasyl Saienko | f5c57e2 | 2018-09-28 08:54:33 +0000 | [diff] [blame^] | 475 | Setting custom proxy headers: |
| 476 | |
| 477 | .. code-block:: yaml |
| 478 | |
| 479 | nginx: |
| 480 | server: |
| 481 | enabled: true |
| 482 | site: |
| 483 | custom_headers: |
| 484 | type: nginx_proxy |
| 485 | proxy_set_header: |
| 486 | Host: |
| 487 | enabled: true |
| 488 | value: "$host:8774" |
| 489 | X-Real-IP: |
| 490 | enabled: true |
| 491 | value: '$remote_addr' |
| 492 | X-Forwarded-For: |
| 493 | enabled: true |
| 494 | value: '$proxy_add_x_forwarded_for' |
| 495 | X-Forwarded-Proto: |
| 496 | enabled: true |
| 497 | value: '$scheme' |
| 498 | X-Forwarded-Port: |
| 499 | enabled: true |
| 500 | value: '$server_port' |
| 501 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 502 | Nginx stats server (required by collectd nginx plugin): |
Adam Tengler | c391657 | 2016-01-25 17:46:52 +0100 | [diff] [blame] | 503 | |
Aleš Komárek | 296a844 | 2017-04-11 13:22:35 +0200 | [diff] [blame] | 504 | .. code-block:: yaml |
Adam Tengler | c391657 | 2016-01-25 17:46:52 +0100 | [diff] [blame] | 505 | |
| 506 | nginx: |
| 507 | server: |
| 508 | enabled: true |
| 509 | site: |
| 510 | nginx_stats_server: |
| 511 | enabled: true |
| 512 | type: nginx_stats |
| 513 | name: server |
| 514 | host: |
| 515 | name: 127.0.0.1 |
| 516 | port: 8888 |
| 517 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 518 | Nginx configured to wait for another service/s before |
| 519 | starting (currently only with systemd): |
Adam Tengler | 8689394 | 2018-06-20 14:06:24 +0000 | [diff] [blame] | 520 | |
| 521 | .. code-block:: yaml |
| 522 | |
| 523 | nginx: |
| 524 | server: |
| 525 | wait_for_service: |
| 526 | - foo-bar.mount |
| 527 | enabled: true |
| 528 | site: |
| 529 | ... |
| 530 | |
Aleš Komárek | 296a844 | 2017-04-11 13:22:35 +0200 | [diff] [blame] | 531 | More Information |
| 532 | ================ |
Filip Pytloun | 6b5bb65 | 2015-10-06 16:28:32 +0200 | [diff] [blame] | 533 | |
| 534 | * http://wiki.nginx.org/Main |
| 535 | * https://wiki.mozilla.org/Security/Server_Side_TLS#Modern_compatibility |
| 536 | * http://nginx.com/resources/admin-guide/reverse-proxy/ |
| 537 | * https://mozilla.github.io/server-side-tls/ssl-config-generator/ |
Filip Pytloun | 2e902c1 | 2017-02-02 13:02:03 +0100 | [diff] [blame] | 538 | |
| 539 | Documentation and Bugs |
| 540 | ====================== |
| 541 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 542 | * http://salt-formulas.readthedocs.io/ |
| 543 | Learn how to install and update salt-formulas |
Filip Pytloun | 2e902c1 | 2017-02-02 13:02:03 +0100 | [diff] [blame] | 544 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 545 | * https://github.com/salt-formulas/salt-formula-nginx/issues |
| 546 | In the unfortunate event that bugs are discovered, report the issue to the |
| 547 | appropriate issue tracker. Use the Github issue tracker for a specific salt |
| 548 | formula |
Filip Pytloun | 2e902c1 | 2017-02-02 13:02:03 +0100 | [diff] [blame] | 549 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 550 | * https://launchpad.net/salt-formulas |
| 551 | For feature requests, bug reports, or blueprints affecting the entire |
| 552 | ecosystem, use the Launchpad salt-formulas project |
Filip Pytloun | 2e902c1 | 2017-02-02 13:02:03 +0100 | [diff] [blame] | 553 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 554 | * https://launchpad.net/~salt-formulas-users |
| 555 | Join the salt-formulas-users team and subscribe to mailing list if required |
Filip Pytloun | 2e902c1 | 2017-02-02 13:02:03 +0100 | [diff] [blame] | 556 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 557 | * https://github.com/salt-formulas/salt-formula-nginx |
| 558 | Develop the salt-formulas projects in the master branch and then submit pull |
| 559 | requests against a specific formula |
Filip Pytloun | 2e902c1 | 2017-02-02 13:02:03 +0100 | [diff] [blame] | 560 | |
OlgaGusarenko | e2f808f | 2018-07-30 23:42:18 +0300 | [diff] [blame] | 561 | * #salt-formulas @ irc.freenode.net |
| 562 | Use this IRC channel in case of any questions or feedback which is always |
| 563 | welcome |