Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ISPConfig 3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
486
Issues
486
List
Boards
Labels
Service Desk
Milestones
Merge Requests
23
Merge Requests
23
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISPConfig
ISPConfig 3
Commits
435ce38d
Commit
435ce38d
authored
Dec 08, 2015
by
Marius Cramer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Added some code for the letsencrypt merge
parent
10e9f75e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
install/sql/incremental/upd_dev_collection.sql
install/sql/incremental/upd_dev_collection.sql
+2
-0
install/sql/ispconfig3.sql
install/sql/ispconfig3.sql
+1
-0
server/conf/apache_ispconfig.conf.master
server/conf/apache_ispconfig.conf.master
+7
-0
No files found.
install/sql/incremental/upd_dev_collection.sql
View file @
435ce38d
...
...
@@ -187,3 +187,5 @@ ALTER TABLE openvz_template ADD COLUMN `custom` text;
ALTER
TABLE
openvz_vm
ADD
COLUMN
`bootorder`
INT
(
11
)
NOT
NULL
DEFAULT
'1'
AFTER
`start_boot`
,
ADD
COLUMN
`custom`
text
;
ALTER
TABLE
`web_domain`
ADD
`ssl_letsencrypt`
enum
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
;
\ No newline at end of file
install/sql/ispconfig3.sql
View file @
435ce38d
...
...
@@ -1903,6 +1903,7 @@ CREATE TABLE `web_domain` (
`seo_redirect`
varchar
(
255
)
default
NULL
,
`rewrite_to_https`
ENUM
(
'y'
,
'n'
)
NOT
NULL
DEFAULT
'n'
,
`ssl`
enum
(
'n'
,
'y'
)
NOT
NULL
default
'n'
,
`ssl_letsencrypt`
enum
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
,
`ssl_state`
varchar
(
255
)
NULL
,
`ssl_locality`
varchar
(
255
)
NULL
,
`ssl_organisation`
varchar
(
255
)
NULL
,
...
...
server/conf/apache_ispconfig.conf.master
View file @
435ce38d
...
...
@@ -14,6 +14,13 @@ CustomLog "| /usr/local/ispconfig/server/scripts/vlogger -s access.log -t \"%Y%m
Order Deny,Allow
Deny from all
</tmpl_if>
<IfModule mod_headers.c>
<LocationMatch "/.well-known/acme-challenge/*">
Header set Content-Type "text/plain"
</LocationMatch>
</IfModule>
</Directory>
# Do not allow access to the root file system of the server for security reasons
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment