Commit 267112d1ed0da8a95f2db35269ae971a09550c6c
Exists in
sei-v3.0.0-oracle-dockerimages
and in
2 other branches
Merge branch 'sei-v3.0.0' of http://softwarepublico.gov.br/gitlab/mp/sei-vagrant into sei-v3.0.0
Showing
5 changed files
with
6 additions
and
4 deletions
Show diff stats
Vagrantfile_Distrib
... | ... | @@ -23,7 +23,7 @@ Vagrant.configure(2) do |config| |
23 | 23 | # Necessário permissões de root para utilizar a porta 80 (> 1024) |
24 | 24 | config.vm.network :forwarded_port, guest: 80, host: 80 # SIP e SEI (Apache) |
25 | 25 | config.vm.network :forwarded_port, guest: 3306, host: 3306 # Banco de Dados (Mysql) |
26 | - config.vm.network :forwarded_port, guest: 8080, host: 8080 # Jod Converter (Tomcat) | |
26 | + #config.vm.network :forwarded_port, guest: 8080, host: 8080 # Jod Converter (Tomcat) | |
27 | 27 | config.vm.network :forwarded_port, guest: 8983, host: 8983 # Solr Indexer (Jetty) |
28 | 28 | config.vm.network :forwarded_port, guest: 1080, host: 1080 # MailCatcher |
29 | 29 | ... | ... |
mysql/Dockerfile
... | ... | @@ -20,5 +20,5 @@ COPY sei-db-ref-executivo/mysql/sei_3_0_0_BD_Ref_Exec.sql /tmp/2-sei_mysql.sql |
20 | 20 | COPY sei-db-ref-executivo/mysql/sip_3_0_0_BD_Ref_Exec.sql /tmp/3-sip_mysql.sql |
21 | 21 | COPY 4-posinstall.sql /tmp/4-posinstall.sql |
22 | 22 | |
23 | -RUN bash /install.sh | |
23 | +#RUN bash /install.sh | |
24 | 24 | ... | ... |
... | ... | @@ -0,0 +1 @@ |
1 | +Subproject commit 3949e4b5abbc4060ffb9d78441289e4f43eaeac9 | ... | ... |
sei/install.sh
... | ... | @@ -6,6 +6,7 @@ yum install -y epel-release && yum -y update |
6 | 6 | |
7 | 7 | yum -y install httpd24u mysql56u memcached openssl wget curl unzip gcc java-1.7.0-openjdk libxml2 crontabs |
8 | 8 | |
9 | +# Instalação do PHP e demais extenções necessárias para o projeto | |
9 | 10 | wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm |
10 | 11 | wget https://centos6.iuscommunity.org/ius-release.rpm |
11 | 12 | rpm -Uvh ius-release*.rpm | ... | ... |
sei/sei.conf
... | ... | @@ -25,13 +25,13 @@ Alias "/infra_js" "/opt/infra/infra_js" |
25 | 25 | # Bloqueia acesso à qualquer arquivo ou diretório externo ao DocumentRoot |
26 | 26 | <Directory /> |
27 | 27 | AllowOverride None |
28 | - #Require all denied | |
28 | + # Require all denied | |
29 | 29 | </Directory> |
30 | 30 | |
31 | 31 | <Directory ~ "(/opt/sei/web|/opt/sip/web|/opt/infra/infra_css|/opt/infra/infra_js)" > |
32 | 32 | AllowOverride None |
33 | 33 | Options None |
34 | - #Require all granted | |
34 | + # Require all granted | |
35 | 35 | </Directory> |
36 | 36 | |
37 | 37 | </VirtualHost> | ... | ... |