| 36 | |
| 37 | Example configuration: |
| 38 | |
| 39 | {{{ |
| 40 | TLSOptions |
| 41 | |
| 42 | The NoSessionReuseRequired option has been added. As of |
| 43 | ProFTPD 1.3.3rc1, mod_tls only accepts SSL/TLS data connections |
| 44 | that reuse the SSL session of the control connection, as a security |
| 45 | measure. Unfortunately, there are some clients (e.g. curl) which |
| 46 | do not reuse SSL sessions. |
| 47 | |
| 48 | To relax the requirement that the SSL session from the control |
| 49 | connection be reused for data connections, use the following in the |
| 50 | proftpd.conf: |
| 51 | |
| 52 | <IfModule mod_tls.c> |
| 53 | ... |
| 54 | TLSOptions NoSessionReuseRequired |
| 55 | ... |
| 56 | </IfModule> |
| 57 | }}} |
| 58 | |