From 17f2b78de9fc5a1718d83aba99a1ff59e2900b3c Mon Sep 17 00:00:00 2001 From: Moroine Date: Wed, 4 Oct 2023 13:32:05 +0200 Subject: [PATCH] fix: support alias dns --- .infra/.env_server | 3 +- .infra/ansible/deploy.yml | 20 + .infra/ansible/handlers/main.yml | 4 - .infra/env.ini | 4 +- .../extra-conf.d/alias.conf.template | 72 ++ .infra/files/fail2ban/jail.d/nginx.local | 2 +- .infra/vault/vault.yml | 894 ++++++++---------- .talismanrc | 8 +- server/.env.test | 1 + server/src/common/utils/isOriginLocal.ts | 12 +- server/src/config.ts | 1 + server/src/http/server.ts | 11 +- 12 files changed, 529 insertions(+), 503 deletions(-) delete mode 100644 .infra/ansible/handlers/main.yml create mode 100644 .infra/files/configs/reverse_proxy/extra-conf.d/alias.conf.template diff --git a/.infra/.env_server b/.infra/.env_server index 18cb6ea32a..c92697f282 100644 --- a/.infra/.env_server +++ b/.infra/.env_server @@ -1,7 +1,8 @@ LBA_NAME=lba LBA_SERVER_PORT={{ vault[env_type].LBA_SERVER_PORT }} LBA_ENV={{ env_type }} -LBA_PUBLIC_URL={{ vault[env_type].LBA_PUBLIC_URL }} +LBA_PUBLIC_URL="{{ vault[env_type].LBA_PUBLIC_URL }}" +LBA_ALIAS_PUBLIC_URL={{ vault[env_type].LBA_ALIAS_PUBLIC_URL }} LBA_OUTPUT_DIR=.local/output LBA_DISABLE_PROCESSORS=0 LBA_LOG_LEVEL=info diff --git a/.infra/ansible/deploy.yml b/.infra/ansible/deploy.yml index 55f1415cd8..5a46f6dddf 100644 --- a/.infra/ansible/deploy.yml +++ b/.infra/ansible/deploy.yml @@ -4,6 +4,11 @@ gather_facts: false vars_files: - "../vault/vault.yml" + handlers: + - name: restart-fail2ban + service: + name: fail2ban + state: restarted tasks: - include_tasks: ./tasks/files_copy.yml @@ -96,6 +101,21 @@ chdir: /opt/app cmd: "sudo /opt/app/tools/ssl/renew-certificate.sh {{dns_name}}" + - name: "Verification des certificats SSL" + shell: + chdir: /opt/app + cmd: "sudo /opt/app/tools/ssl/renew-certificate.sh labonnealternance.pole-emploi.fr" + when: env_type == "production" + + - name: Add cron to renew pole-emploi cert + ansible.builtin.cron: + name: "renew-certificate" + minute: "0" + hour: "2" + weekday: "1" + job: "bash /opt/app/tools/ssl/renew-certificate.sh labonnealternance.pole-emploi.fr >> /var/log/cron.log 2>&1; /opt/app/tools/monitoring/export-cron-status-prom.sh -c 'Renew certificate Pole Emploi' -v $?" + when: env_type == "production" + - name: "Setup de la Metabase" shell: chdir: /opt/app diff --git a/.infra/ansible/handlers/main.yml b/.infra/ansible/handlers/main.yml deleted file mode 100644 index d5fc7c41d6..0000000000 --- a/.infra/ansible/handlers/main.yml +++ /dev/null @@ -1,4 +0,0 @@ -- name: restart-fail2ban - service: - name: fail2ban - state: restarted diff --git a/.infra/env.ini b/.infra/env.ini index 7c1bbb95ee..c4bdd5eba7 100644 --- a/.infra/env.ini +++ b/.infra/env.ini @@ -4,14 +4,16 @@ app_version=latest [production] 149.202.54.205 [production:vars] -dns_name=labonnealternance-develop.apprentissage.beta.gouv.fr +dns_name=labonnealternance.apprentissage.beta.gouv.fr host_name=lba-production +alias_dns_name=labonnealternance.pole-emploi.fr env_type=production [recette] 51.75.246.6 [recette:vars] dns_name=labonnealternance-recette.apprentissage.beta.gouv.fr +alias_dns_name=lba-recette.apprentissage.beta.gouv.fr host_name=lba-recette env_type=recette diff --git a/.infra/files/configs/reverse_proxy/extra-conf.d/alias.conf.template b/.infra/files/configs/reverse_proxy/extra-conf.d/alias.conf.template new file mode 100644 index 0000000000..dd8d0f8be9 --- /dev/null +++ b/.infra/files/configs/reverse_proxy/extra-conf.d/alias.conf.template @@ -0,0 +1,72 @@ +# Nginx configuration for both HTTP and SSL +# Defaults values https://github.com/coreruleset/modsecurity-docker/blob/ef9432b6d2e08370a55879543f3f042c757c29c3/v3-nginx/Dockerfile + + +map $http_upgrade $connection_upgrade { + default upgrade; + '' close; +} + +map $request_uri $https_only { + "~^/.well-known/acme-challenge/" false; + "~^/healthz$" false; + default true; +} + +server { + listen ${PORT}; + + server_name {{ alias_dns_name }}; + + include includes/location_acme.conf; + include includes/location_maintenance.conf; + + set $always_redirect ${NGINX_ALWAYS_TLS_REDIRECT}; + + if ($https_only = false) { + set $always_redirect false; + } + + if ($always_redirect = true) { + return 301 https://$host$request_uri; + } + + include locations/*.conf; +} + +# Use map to allow starting reverse_proxy without SSL ssl_certificate +# This will allow certbot to create one and trigger reload +map $host $fullchainAlias { + default /etc/nginx/ssl/live/{{ alias_dns_name }}/fullchain.pem; +} +map $host $privkeyAlias { + default /etc/nginx/ssl/live/{{ alias_dns_name }}/privkey.pem; +} + +server { + listen ${SSL_PORT} ssl; + + server_name {{ alias_dns_name }}; + + ssl_certificate $fullchainAlias; + ssl_certificate_key $privkeyAlias; + ssl_session_timeout 1d; + ssl_session_cache shared:MozSSL:10m; + ssl_session_tickets off; + + ssl_dhparam /etc/ssl/certs/dhparam-${PROXY_SSL_DH_BITS}.pem; + + ssl_protocols ${PROXY_SSL_PROTOCOLS}; + ssl_ciphers ${PROXY_SSL_CIPHERS}; + ssl_prefer_server_ciphers ${PROXY_SSL_PREFER_CIPHERS}; + + ssl_stapling ${PROXY_SSL_OCSP_STAPLING}; + ssl_stapling_verify ${PROXY_SSL_OCSP_STAPLING}; + + ssl_verify_client ${PROXY_SSL_VERIFY}; + + include includes/location_acme.conf; + include includes/location_maintenance.conf; + include includes/location_monitoring.conf; + include locations/*.conf; +} diff --git a/.infra/files/fail2ban/jail.d/nginx.local b/.infra/files/fail2ban/jail.d/nginx.local index 1033b5ce04..28e218bed3 100644 --- a/.infra/files/fail2ban/jail.d/nginx.local +++ b/.infra/files/fail2ban/jail.d/nginx.local @@ -1,5 +1,5 @@ [whitelist] -ignoreip = 213.91.3.170 213.91.3.180 onisep.fr brevo.com 171.33.105.206 +ignoreip = 213.91.3.170 213.91.3.180 91.173.13.14 onisep.fr brevo.com 171.33.105.206 [nginx-req-limit] enabled = true diff --git a/.infra/vault/vault.yml b/.infra/vault/vault.yml index 5f64f7507d..a3fd00c2b6 100644 --- a/.infra/vault/vault.yml +++ b/.infra/vault/vault.yml @@ -1,479 +1,417 @@ $ANSIBLE_VAULT;1.1;AES256 -33353430393531336434376132366131643637313834663761383134633738633161313464623937 -3262343464376537663830386563386565653661656235390a343261663638633437333839343134 -32646635666261366536323737316165316363396135323138653966613362333166333139373762 -3432633339373138380a346639343631333638646565653939663763353365323463313132376366 -30326463616565653061626131303830323563363436393462393037613266646563393332623632 -34616439653664386136656662353332393530646364353466313861623161316632396263643431 -38323837376238646632623033333933316330646632613336326636303034333338356265316462 -31646539383862313761666237343234313037633832643037353333623531653463653366383838 -63336234386262626338313838346431353639623436303530356137376133393034396462306137 -36386265626338633035343538353663633734643935376131366166306232393334363738363535 -34613037646235303362666566386561613637346331333633616538646334613131646238376565 -61366137643732336637316333343638323035643462616363666562373865363165373631353532 -64616234316237303131313237353631626430623461393265333837363036393262346665323236 -61663165313662313235326261653730666135353438333864346239323236313064393138666466 -64333766626436363563396532663939626634303233623038333866643935393863636230646564 -62653933323761623664623166666663373337386662393637613533333134353336323838383533 -63313763306663646534633732643038396534393638653063366564383534346363383235623338 -61306332646336313831383337393439366364386530663964363732616566363139653935363331 -66306162326233663931653436343466393836646462343764303436633937333131353634336433 -65653964663933633762643634323736666564366335316630316339646536343933333465376639 -37643638373134656465313636623537313564333838616164383361316633366136663865346133 -35353030666130353439623538653933363662393235326236323438653836656563373861636239 -38356332353639396134316461356637633536353565663632313038653363376239303565353531 -62376137326264396235643539343439626561653838303365326135333464306636643538623362 -37323962626335613739303765373262653336323261326235313236376365653133333231366164 -35636464643463336666353864656635656161363838656438376364613263366630343736643763 -34303638306165613533393234643065663562363161356630383335316666353839356661623934 -61613135333262626132376532363536373233373331636662336562356130643234656661356161 -63313062653462363633633264363965633962323138383139366662313130363764386234613337 -62623533343466643335616366326133336630363662353662643636636465633831303163666334 -32323136356364353563393134356435366661666361333332626637373062616436656431386465 -39623931653466343234663466656237666364643034343262643830376166396536633730336265 -64346236363230656164636661376564326139363063613561356639663065363338306636343764 -33316132653261663261353463626561346239636637623262306663323639323639653032306232 -61316230353464633933326562646234303863396332383365633437626533633236613761363435 -31333738666232383434623664623839626561626134636366393062333337373738663934373232 -63303665613461336266373030383436356638656633303234343638343534666534363030316663 -62386235306561623061353937393438336531373039616231366433316231303138656130663461 -66343336626433383366313732326333616331656338336365306162376339316331386232306464 -32366161303936393261623734303765373165366366346437386333656133396239343237623430 -36363533376230623230396636666238633431313938373736303961386436643666623362663938 -35393638383465616534653930646431623162633233313531323063366637623135663435326261 -30623331623964633433333966373263363238383066363737313034316635666536313135316361 -35353934376530666132613739653562353065623066663433623061613166363533353861343936 -65353964643034316466643166326431356137363735393930343833613233666566316563373562 -62636330643030353263353062363933386136636231343561393933323861666339373437653838 -61343533363038663061343934636239323865306561623737373061363138366435323266643835 -39336432376665646262656266636438356165646433343866343261383962663132306233333339 -37346232376532303431313061363961636266653838613539336536366537323836313662343562 -36353862356562653333303039306463303834643130323338653439313765636131653039623231 -66383234356332366638393336616362363335333039653338643930313536323130613131653862 -33303539343035363031353661336133663031343838613238653363613665323434353434323835 -30353366386332643665646465373739636564303034633637333563646165366238303261373431 -33653334363338613962636637323935656639393366366562643365383035343139336631666631 -64646466353632646238323261646437363466613865643333323235663061613237366134373734 -61376562313037366166323864653233646261343066653033626330373232663565663935303662 -62373064616664623661396131363666626136393866626163343164376430323434323464343530 -62626663623731663730636266386465303635383165653661303763313165663330383236383165 -35663435356436366366663962306639303862663036333363663136626566313363633765343035 -39663061636362643062313834633861383631623535396531663465353664636436636363313661 -38363934626236363938663034336133386137666430643030373037366433313636306437366331 -65666532363835653737636631386161613438313034346263393963303863323436633065373739 -32303536316433633063303334383632656461306330346463323936343538386433633564616131 -36336364353334316138323937656430633066643364303066663761636132633637666261663736 -65303337613632653931616135666466323331383437663933653839363663363739656231343437 -65643635656135656530636163643966306633346335663731346538616231356663376632656566 -36616361636536383366396230616535386463666366323262356265663264333864643635303261 -63383934653331363361353166333966316665396534626265626638383063373138383061346462 -61346663343863653935643964643862633734636139613436343139303234306533383665353637 -35613263343730363338626362343666633363623431383630356335373537656430636539333138 -32633933383864343464326234353465373662373839393137663632646532303332633832333665 -66313537643662656431336430313736323136663337356332656564353838626337386132313265 -66303435633839336331393334643633396234393364386365643538393034333066653766393335 -36353935353038633132343563346237613765346266313835356464343434616231353962626233 -65643636366163363131623633326462643061353131626265373039626230353562306537333430 -36343236363738393032623663616632396364346163333934653437313231326164316166303361 -38633265656565363739343162636664353162623461653733363838663738633738663263366139 -62346635643432626166306330323832363731353837316333646139663038366438386337626639 -64393734383365626537633237386234306134613832336165656238346133336432346561373330 -65393462306235333631636134383566363064383061346664633064313333646666383930356331 -66613339613531303465363062636265633836613563326333306330633265366430653531656139 -36326338353361323833663332386366643065363934326465343737356161306239623838663663 -34383963643535316239363636373038376539333833383536376633383564613039363863383866 -63396161333163643065333031613861613833383731343237326565663530653834663833646365 -33653662316337306163353566303234396630353764323235336563326630626530613762626237 -64633431363036643939306634396363393463363461373735373263666561333130393537633061 -39333635643435633836653930383862626163363835653439303337343462353635373130643338 -66616565343039333531323337626333346439633764366365316564383838653535333661663434 -64326663313839663633373037373430616234663430633664373838333866396337626461343732 -63343434356134383136393734616363343761346435373964646361353330306663333066633635 -34383338396161366536653564386630363837633939336335623533623630633766396265636265 -61613330616666316363626638393765643761613532353936616635373463343461366361383632 -34353039333335643033633134366534646565623436333237626237326162663561643136353931 -39346236373936376139393834373530313330656562363237323433333731613336346466393538 -35383663623337363439646434663536396536366462306237653264396538616466303731316565 -34313864663865356431663463623663633265336166323063363162303330613166393166646632 -36396539323233363462386139666364363539666335316261633433343438623663646565613035 -61633938343761663437326464633761616239663462626430646362346337646638393134373464 -66643865633363383166623437616263376535623162383337636337663738653735393436663134 -37333338623561646265646537306134626336616366653861383438353662386134303137666534 -34393037363332326133386339333431366132633339366437366661393432643432323534323133 -38313665306236343539386266666134656139383132653034363239646234333630323338393635 -32613932343664663830396633373139316362373832323137666162396630323233646231323130 -66383338383964653762353962633062363761623163306538326361633333333965356331326166 -30366431363430303565306237623332643035313639656536646133386363636361623033363331 -38333362613331303565616365303162653361356334666338373430303361306365353737343764 -34633064343139303837636637323361383536383938636264336439336461623437366234343337 -30343739613961623230383061396536653437313433356463363535376464336465316333646432 -30373965653933323939306462386439326261396335653737316638356133633162663964643164 -66393734633539666533636362663334386331643535343533333861376132646530363366653132 -63663239336533353963303464386563663536656237646161623536343833323662313336306665 -36666665313962393831326535653033323535303364343334363337393033653631623731373664 -63313761386235616435616266313565396137636561666230333933643731356539373061386361 -66326162356636383433643432373366333032346666313061326230633665363962313539346533 -36313438666665346633643237303261303932613764616636366539323839323736333066323333 -66623262303232623963363337653237383163353665343733363662613230373230653466653761 -66366331363832613862333666393130646666336538633839343366666164333261386337383836 -63316566336366633962303734356162663263393635333535663561666432613937616434643932 -63306631316531353830666464313764653034626437333764616132613066643338663835333764 -35646563393464313761626462313637656237306535346662323139336166643733326363636235 -39663138333564666332663930366361666631633634383932623864383135313832363031626463 -61313261363361623463393031386135363535383235316532326661626330643830663166656365 -65373535383838613438646134646166633562643761613434633461626565613665366639306666 -66353134333337363935396530613631316631376464613336666361363138623863313065656462 -38383665323236376139646430666562376436613035386263353133306538396230633531653062 -38393565366135363161316435313131373564306139343265353164623333643566663835303064 -65326663333438336236326533653733326562393830623631396561616432383630316562636461 -63386234663566393836316438356364356237313763653237643063393833313833653664383235 -63666135363536396638376433313763343831643731316532373035343331313362643734353334 -62646463613864613535333062633062356361666237666437333231376133353438303838316230 -37626237613630336164636166323862386438376637636233323536343065663335626465366539 -30313362353636306235373339303638336435383738376334633663366339616163636236326164 -34343635363839376262643833613030313364303331626663313837353665383138643734383436 -65386534393262373932623036333036333537663938386431626336666132646662353061306236 -32623037616464356462313366666631363734656133313739353339303537646264616633373734 -35616436313036613538303533323839633363306534326230393862626564306335323535363532 -38636534346162346638386266383664353763326132316435336339376435383236393461363336 -64343039346539636231323462353264313434353232396134383662366363326663363837626431 -39616432613262633361626163323033643535626463616331356164633438353238303336613561 -34393365383138376633646263363062333065303366356461363363343637626632393339353430 -62633730343037333661653235316162323436366637336536373239643835366365663932363665 -37656133323763386231346232396262353833663162623961363733326638643061396261383664 -39626131636661613935633036656431313439316261376461336165326166383630646531386332 -36306432306134653237373534353661353466623134633565323262623237363338373166323962 -66653963633766303662393665663035626630623632323739623039363837653333333737633533 -31643831313962366461646463356132656336636633623661306632613164396538353236353832 -37353262343562643766663265623330393732366135363663616335306464653430623130393065 -65663836663836323237656435613732633164663339363662616431363165376666343131396639 -63393232626639393538643563643264623765663763396432336561326531316666353232346635 -36343661303739663538656232643532356265633536666435376434666261613333383535356666 -38633062646332376465666130356164636634306132643434643466303933323137396635343336 -61383537376635613464313839666230363531363765323663643336383162393238653037663335 -62623239636330623638623135646135336231326237393634366535623737376136316139396132 -61313237353937626133633133633835326365316230643438646363366537323062366334663935 -31393162333239623832626530383066636263343535353863666662626464613231646561613536 -34613738323537303836373439623031363031386165646330373432356365666262303336616435 -34666361663966343434363834393037353966663737366138346264363032346366356365633761 -38363163396338336435663037613130363062626562613235633562363465623935366664333261 -32303339373034336166396666656365613965303061313637346431393433316239613739353164 -31333261383838393262316130313063386465326462343638306333356130656234663662366432 -31316631346633613836343265623364383436396539376635376461643365393236656537366534 -36353137366633623965656230343763623539646237386666313530616465386162656339663431 -39396436393334383539323935396237373063613435663263653364343866386663396239313031 -32346533383865383334656639383039656265383662323863643937343962663133363133663930 -31633866323239343637666337383339333362363733646264383532336231636130333930633664 -64636465633362303739633363623763653530643235613738666161363035316666383933353530 -33656335313762636132373665313133346464303332323739306362306666653739626263346165 -33616165623462346466366366613731363166613163656136613533376661386664626634323230 -36383766623038323839666434663831343261353730613262366563336565386263663863343632 -38613531663365386336376339353139336137303832646535336432663031626563613365656161 -37623737656664643663393531653339323132346436313232636335326538333764306335353165 -61313936383637633163386535343261613265373664613332396537303662636362353964366564 -38316365653739666163633162383063313864336331313036626633393031393531306666646338 -34613531396539376533323638616135653031363163323864363435383733353666356331646133 -64333534623732313637626439373665643235326437303936393264656266633264656234373033 -34633635396234333362656330356238336632386465366135363730666530663735346365626433 -34623533643764366433336162656333616266646530643864356235356130626337613064616566 -61646236386631393232343534373239633939636162613131336339366631616366626465636236 -64353634363934363461646561343764356132653930393338663638613534623935323337333161 -31373762396433376232633063366534326666326634633431323139343236386535363033303932 -38653535306262666432663634623263323366666136613565363134346563303261323562623061 -39316235313433373230643533666562356136353037663836383533386339383732393536616339 -31346431353161623736323434313133323064646331626332393234373931396632643338346462 -38336634336462383362353262633332383432663362303732656236363939613635653738343831 -31353637346562663565653737313362343665636165636565313366356335313936393333366566 -37343136373633383661306461653666313232366135343136336635363437343965656230383635 -30313332343530313431633039316236636336333433376161333035663530326263313434353436 -31323037303237646161376262663561333435643731623064316465626433333434306635313961 -35353839363030356139323261356130306233383535353236396364653830396634386237613536 -31323164313336363331393934393965656263626535653537353964393534623131663434346537 -62653464373264313862613938363565376630353266383636316236363863663264363739346435 -64396462383461323232343634316636643766343938333661396537383363653730656538303339 -37626437353862646364366664313534343030343838306335663233343133316138616535356263 -30653965346638626532363335353132363631636639633133333937656466386530343964326636 -63396632663665363434333436636336643233353730613661333132333132366139366330346636 -34653566396539373733346438666632653532333066333338303232663437363962383462386233 -65633738663431626232366238313966356637623930346437376461323863366536653030303939 -66623964303334613261363063653363336435616162626561613737653937326233663563623032 -62623231373136366539626430616266396331366363653433333134356334376162633163343564 -63616266363037616564653236366437303966346461363033383665393762366531636161656161 -38383239343137653261303138393164326164346432356338663533333630313331353933653863 -35333937643336366565346531336365383663336661313965353461376364616561663431623533 -36303962623165336135303666366465373434613963363564626333396330633633646638333261 -63396133646163373736326462363664393734393037393935653837346563393531366566336539 -66393838356634663634623161353338643161616564626339353836393435346432353066393066 -66623038363437663139623566326361356239326637393666306162363937373665303065623237 -37333638333430613064383537613634376336633631366236646238363233646439376365313138 -39636134346537396137343032656264333834383730653635663366663866333061623137636437 -63636539623963393433616537336134366632663263343238303639333239303963316462363662 -62623931386136643062633630366135333131363533323834313838303164386133646436333434 -38633232303935643064306538666430336334323030323538626536626637666630663334333661 -66636665326630656439623432616137636336656230376537323537653833663866653438336636 -38636564653161656461303561343061356631353137313934333265623962646235336133623365 -36333564356662313731653033643365303634373031663864356262336234343339343163353265 -32323034626531666264353830633531636366346333646462343361326138633863313139666337 -66616633353866646433633331663132643738333931323334356566316238333335643666653462 -36393266343038656237636132383766336230366666613138303865346264646162363739336131 -32613238346534363035386463303735653438303266656535623062346436613034306563663066 -61336632633864613435343761643864316137386139643534386333306666643933363337373034 -31613433393334336136313031306364643763623761343230376132303538393330383762393161 -61383030306237326634396362393163333762346338316535653062386138373266646264373561 -63663464393266643039616233383535373139363836636464303733616665653535666530623464 -30343635653565373664663866373539646463343538643735383362613336383437303534303436 -34363563346332663566356337363632633236373237666331646566336633386230626461306130 -34386338326131616131336531383539373865386535633162353930323434323763333464396166 -39666430376238613064366439333466616632323861633632363435613736623830613935666237 -32396462613134363166623264326164346264616534306661373538356534353265353463636661 -32353665373432316136393837383038336564373662376633346539646531313364383063636162 -63366537616132326335353862373439313536353839336662376133313766633263616663343864 -62386634616632643765303734653538633732373764613461326139303063313132323834396465 -37393730303736626133373261613362636434666638633839383531363932376662633266336461 -64346237653061653039376537653361303338306137326134303965643366313534396530666639 -31656439636661343066346363393235643463306639326236633164333633656237653738373638 -64336563613365333632396531626365643666653634616533303934376564333732613832363461 -65643034636635333232336166346230653162616466396338386131373135623431326462643765 -61356436636237666634396637663333343361396466303437613837666538373334383263636364 -66643334653136303431616632373031623632636435656663666136356333656636343335356332 -39626333323536316663393363663235633735373466353461363661643733386661316164633462 -34353066353163623335346565636331626130343830316135356164306162353361346139666163 -31373436636136303431613162616263323262333133343630653766383263353934363366346366 -37623566396436376139336135313566383263373133383431316538323533316131323266656663 -30343230366234633533306538336666643662313263333465363232373466643634653933623130 -66303963353534343939633862613664313437653434326635356365383563393931363064303432 -31396162346566376133643236393766343066303066373664323535663637663730393338633836 -39656461376534373431393539616234616366333932376138613437646662303035623534363539 -31663164616134383764396331363930356239306337613636363165306134663332643336316438 -33383239366131623634386262316234616563343866303562613439343264373633643462376464 -62366365653630643766303530623164363563386237623333383338623831306463323663646438 -65613630656664393564653135313935313733613166333963303330636233366464383832343666 -64613138393235306264353233353836663933313031396563623430663161303337376363613936 -66363038643532396266666132366265656462326365623534396235316133353237396430633831 -32373964333761363764633466333464643863623465313439393766326364613666626664366430 -66616235393932626662383231646561653434343939396665396430323161663634663461373164 -32613063326265303861336131356630353437656664373237643035623064306430613565626336 -37656464613433663038363962333562356263666566626266373639346239363133636661346165 -35353864653035626538356238303462666131343664356465633138613861636161363836393839 -61663538633638633930343339383834363634613237613963626262373930396663636338646437 -38326436326431376337636336356362353366346663303137353338613334326638393536663063 -66633535316663343935663666336630643231623339353663316334666364613364376264393735 -65663464316230656333383931386632366538396635366165666432663266316635306330323461 -30383434343363313062353638313536323462316330353761336132633132373964633931653839 -66343937663363333163363035306664613666386334646639626436633166353361343035303962 -62326363386131356432333738323336393834383231613261386561623031636232316335656161 -34333430376539333465313632366439376238333935353737326166343062386461343164313066 -33646435613730623031666531366631613531646230336566353036613032306434666338393930 -65306535373838373635613464363333633839313763626535303661333836303362353931356363 -65616639393536393737336232303163343065336336313537653464623861373633666530356464 -35653462613631626431343333623634396461316437323464626239366539613432326236356637 -35346433333332323136356331386433366464353038336135303963353533396432633630393730 -62303665383233616536663164353531373134383336373032323233386162383330646238333466 -33376539303537303561353738316136363030613430353263313066306130653063363038643933 -37393930373236633462613865656263356539633239666330646163366237313834343837343934 -38613735613735663430373131313234623462643031393564613163383631343438343062353335 -31666539653363336235323338623864633935613232393633613334363766396438373835303234 -38306235396661626634333461363166383866623035303864386262623261336266303731633533 -30616631353233666164393034303062373739656232623330303766333261363431656434346533 -65643435633963653134343862643638396231616433393731313763633464326333343735643238 -63653535653234646161383031646435646161383164613234333136636161303434366337313461 -31356539336230326231346165623434653339383032303535626633343364393833356463653963 -32663937393663326230396639333064346630393363393363633666393262336234333064383339 -34633765643265333938653561313566643861366534663730666566363265323764306164313663 -63626464346632613862323637653732313466306665383763383033353864613330626139303137 -37613264303963376332303130643439326334386561353032656434306135316635313837313138 -36313363373631373736313638636331646436383932346337613964393536666432613230346563 -65383663353039383030313235336162383237326534653234633936666264333130373464333535 -37346364656431323963306237383139663431653038656462616162366133333336333231663038 -30323432663863653533646463363132633063643231623732663562616166373765326336356432 -62353438303364316161336331383739663162376338633431383863663839383565666134346432 -62623961343766323132326166353161316438373433623637616265346239643361376437353233 -61303966613763353832303533323430356264656663343562643063353934396662306338313735 -34323663346435656233323435626336633361376161653734663535666338333433356133626534 -65626232333638396162383762366236633333316433656361336538336331643038633239303534 -37346134616533303066363331353361616366333438663735353438383630343662383465323239 -31336533396233326135646561373662346135383261313465383935366234376337363161373733 -66373565653136623763383738623637303634363639343436643238393463316335333633343166 -30323835656631636136626331623438303035323437363536313463386236366438323633656639 -62663766613736393134366330333632366234616336623136656436366233393138393361623864 -33333231356438383435623338346536373038353037336235616632386539616632656133373862 -37653763303234326466373935633931633966366261313261383839646265383734353364313864 -35643961643961323736613638393539616462646663633165633738643164313961386532393234 -66343130303566356362343034303463303566326630633266326235343638376138633239363832 -65663131613766356631633737373631613336343530323036626164616362356635383138343462 -35313761663664613633393336666665396664366362376162633436363939333631383236363761 -31373838303132616461303566326231626664633564353337616431356531633566353566613132 -65643664613166393135323763316130653535383432353064306635623930653263363139616636 -32363566643561623737663133633664343136323232636563303030666430363862356163316562 -63366361633665363165343238663338656361613233653139323039373938613766376435393436 -38623133353761393737303163333236616162643964303661373861666235626530366663353665 -65633533623330616337343666633563316363326238333335343563333966666461363935373466 -62383034303566353435353830366432353136343866656332636335383137323932626633663462 -38373734316531366265346633663935393432613437376661656431626664323635333035373366 -31306165393432383934326436303730653536643538643938363062616631356239326130303438 -66626537626165303034363336663732633634396334383861613535373836633735663832656263 -35353231656534626666303934346332363338643762613436396361343966376333383131623966 -39363833373730383134386433316430646332313731393432356364373737616265633539353461 -34333032303833333137663933303363313836313766343332623165303736633633366439333336 -35353933653763383363626137353835353265666337616165343239333561343736333665346138 -39303439656532633631393663383236396139313837326233613566373133343263333037343234 -65363666363934656438646133343761623537636363636263653638613930393730326137396133 -37613439383163343961633238306233663735393664376331366537306364303131313866303034 -64623564663965363963313061626237663662313735643965333063353466333430393239633436 -65613436323337383439383638626262653334653130333732376465316134323331363033383732 -38653730623862616231393765333065373130303434383338373865346438613536356337313536 -32383934616530343733646665653061363931346632343063366161373037633363653532366163 -65663632633364323535376362366431643761316333366361313938346532616239383861346262 -61373635366562653536633530323865333537393634643938363565386536626434386133633365 -35663839313061333965633962386265383765656631623561323537393631353766356534346363 -38373632393235383361306361623530666561376530396566326130343963626163653064636661 -34653062626537666364316461373766366237393837623939613661666238336234313935383235 -35303564313439386563626237663436346336623337316439323231343639646461313966303335 -63343935653437643636323437326137303035646237366232663864363634376134633935333961 -61656363323637623530313466333036656632656231633638323037396634366133613239643364 -62366365326166653934613362663131313066393231626533323634303962393137663533623162 -65646663333861326264333431333632666463633239363137643563363238323264633139373138 -65363461653763666263366461623464613763363831376430666135623736393639303862373063 -66616432303764383966643934663362396231666333666364626663633630373762653262623933 -65343465376431623734653733373333343261663233376131663764333762303430613161373462 -66643864643237343464373838653663336138643933343336333937376338633361353965373464 -31316530643161373234643832346364396466666466313166393238333061336132316630353231 -36326662353433393464613738666635313862363131313038323130323263353133663839623539 -65396466616238653863306662326263346164653638616433653837616338656330343232633232 -61613131656333343363323538396235396461393635396635343738356534336663383863396562 -63633239386536343964666161376636343633666136393262376639666161323665636336643761 -35363761633732333835653837613736653166633338623234666230373965323231393264326332 -63356362303130366635316563646530636339656539646265316463343232373466643435303439 -62666238613039346462363861303638316230336563656534643237306338323364633536373731 -61343733323566376138626335303039323565646339636331656465373762636138666630386431 -66313138383531313934333530616537636466306263333937623862616566653631616564643561 -32656662623065623666306537616464383931313766346630613430383735366262633665646466 -36333630316564343132663764613830613933633362623236663439623936323337376133636561 -64623164646530373639336138383663313837303761663736393662333339643861626636363139 -63343731393461376662656161613464323063366266343165396635643562643164666565666465 -39323233366431333765343066363538326364386438386433303131393135313631353537373139 -31636239323731616464316432363539343565396236343038616665386439626532656565333864 -35366333356432356663626636326237346530343731613461356462653566663237343533396361 -35306534363231653863313330613633386465643466323631363064306164643137326266313037 -62646332333238666561613561383239653763376331623435633865656334653538626663343738 -33656337636364303630323063613662626136613739356162323062343836633533666236666432 -33303733316639613731333761373635353336313634383666326231383639623733366265376236 -34666261353463663162353661343433396635323862646234653234373339613631326664333739 -33663238613431306639613538346639656538633762356537353134353235646230343736643330 -62613533613235333037613164643633363462396533613964363030393039313933633433613435 -37383235336662646235373031363237326161643962373033376537386435303062393366646436 -35306265363939633261313038323364306634313337336333343963633131393231313762613262 -65613930343761653064623539336330363061343666393830636138616632643833623535663632 -64653033613136366262383939363530383330373962386162396437646339353534383735376162 -34653637343530396239643031643165633930393435336333346565363537376461623864636666 -62633037313166353865373136343266323664343737663338653565646637316530373031313839 -61313535393036313337343437313531376161636238653862353437346536376537393331646665 -61393435656231323165383862313831393833623163396535306565303539303662653863633362 -39613031333635613165393031316131313963393136376162376461343738656232623037343938 -66316264303534313538373533656161393931353837373730386166383964663132666431623834 -33393366386537613036303266306566633562313237333034613061623732303465663835343363 -38613738633765386232356239376635323332343538393234323863323834313565323364616631 -37623736633637376532333262346162343965356262353634623361306565623232396361326533 -32653331633530326266613439313332333464356561643164666336343137323431363765323434 -31303039653235363731623933646137396262613434643436393562663939626362326135616436 -38373438623936383237666266636136383630393335336236626265303935613734386639663134 -35646633376431376361363935653237326134663061383764663563633235323439393164633665 -37386337333733643534343363613864623864386531363238376563363566376439623663303362 -33623537663464316265386437633233663738393037613839306266373666383734643330633633 -66383361336335353439623464383461326663646239333565616164333162396161663533353132 -33386564653536373862613036386131333331386131616461633661663538386137383263373334 -62653162306366313535623338616334616339393265353035343061623439333364363161356530 -62646364376364386164396361653532366332346133666234646631373636356334373937636530 -63626137306237333036353463616637663461356263366563363663386662383261383035343933 -39656330643265386666666637666637326235363230323534343836313739303863656662396639 -36636430306464343936643033663238373265613264376230316630353138366236666538633134 -35353836643566316664336234633663663134363430313662666163383632643239333235343332 -36373532386637383265373362333666663864336438376431326130373665313634373537633739 -62353166323539393032373536393962623362343832343130373237613639383638386439356461 -31613265356163396133633635316335373063333533636262663030343330363461633635393561 -39323332373161646539666465323762353030303734653764373036643234363739363537333930 -32633333356365663532363461636539656433386634653438643136626665393831646164393761 -61353539373062653265383036633661336236623063343266303232373136323361303231316261 -39396363386330313534613133393833613632383135656462393563626532663739643134353931 -32366466633166323433646565356134386330333035303338653861636262373230313837656332 -65306239353537636238396362393337643535336632653031663435663536303135373034303161 -62313637623365653530626134316661343665633661613263306663373033633333363737633438 -63633033666464646439613461636264656265623933393530626164623938633933616139636463 -30356339623438306437666566386461383637326437363261643330386166633164353232636335 -61623832393536613066353836613462666431353365643136313264643563646338643363343830 -38373236343261313430313834366639663531396533306666323165386531313230346237663365 -31303138376263396165306335313037393966366134333164353534666637643531313961336534 -66373237663930383066386637653161663632346461363766313530313464363430663033633262 -61353963393033323439393466643737313331316361663961323733376164646338633739616234 -37643934316336656237646230323032633461363835393330653734636132353866323137323936 -35323338386135303233656262393130316531643238356362623261323835386231653164663731 -33303361326438633835376636343537326131336231623364633338353665393538336161313466 -63386238613037643164383763343832383931653230303666376465313164653432313236653363 -36303563383365303266663034333561386338313639313763626535343337623339393436313435 -37373038313135336434333535616439383534323661363962343631336337646466376462663866 -63643265663231333231373764373461633463323035303564383863616265303533663639663731 -34643733313163333562633939306362653061373238323463383764336134356363396135616434 -61373966333061396330313933656132303930353732393563393965323562343063303064613738 -38646239623161666136306434383563303766303337323635616261666333373333636139643661 -35653837613866366666623637346334346432626261626463336530323166343539333735616638 -31393561366564353665393937363231303862346233613435393539376332393461393761343933 -66356431663061316666373130323034333061353033326661316262616331656464353863646430 -66336632363737376462343234306337353537393931666566613034353064336461386335346464 -39313862396536663838366235626663343063336563323663336337353763386363346533383433 -30653261326435656138326237613366396561343664323133393062353162623161313465366138 -66323464393965313263373331666663346262626161643636663433663061646363363861366664 -33336230396664653531623137396532623733666463366136343165366136376466363535623962 -65653730636366323865306139333138373161366436396137646333623264646139373431626465 -36353933333861366637623666386532663161633463653365373732316231383237623362313161 -36316235376432343932356632343134663032313433393464366435626432346535333131396132 -32626236363332633864383738636534393230326338326436396638306635366634383930346433 -38653661666661613564353634323331656333636663353637306137653636363032343861303530 -63656161653261316438663439653835653936623762323564383464306435613331366235313261 -64353964633261653036663262366264653539346237363739306663373534386631386539373866 -39326463623331633764663736383035613966376238313832326665613236316533363163613162 -64326232316538656431636139616531376131623563323366363837633935376432653038306534 -39306466306532656565343265613137373664386631613765636362316637366535316437313737 -38356462343065346665663961313631373464393332613166366139636631313863656434643964 -39326137336132643438333230616235326136616363366632633365626137376565303561376532 -30313663643166313234386466623035386132346330306536303632303636643834323133363764 -66363436323333356166616634346462336236353735306532363263313266643530396564643236 -35623932306334333932383764653037636566373737656334393863633165376237663935303032 -36653261363661393966353033343636303933616631376634616237356438353936663035656263 -63656566363361373662326266363161353234653565633362353737323030356237646437393161 -65386565386234636131366434353630636433663761376334626335356564316265646234343939 -36613030346430656337316538376361643862616330336135303931623937656564376262623832 -61643239316630633638656366353663323535616435636633626666323062356432656638346332 -35383034373966616232393761643935353235393463613861626632616434663862336337656430 -37303466636135636665316237343634643065663033626535316661633262313631353736386435 -32623261316338616438653132323432316666336231386261323931323039613635343364383333 -34383836656162663233333132336663383235333733326338353939386432356337623635396363 -62386338323464333337626364336563326538303230383137366132363234336535353637613830 -33306232663330666135333030313537623739653938616561326663353835623134383562623461 -36346362386131623536393562326361343437393234393966393365396464363532633666663339 -38333462383737383830393330326461323833393131386366613864383931623333623034346365 -37313635616638633735393638313231666334393364316531383264633563376439393532633836 -62666261346563613737313431356164646538656136633530353732356231643032633066336565 -32613465343262313437386133303565613830633139383832336331613436306639613865393261 -30373563336462386639393166303530353961393135653931313132636461313161396263373964 -38303762663632336462353566643035353037353337343365323662353439633566303563643464 -65373065363136303133393833326535363238633031383638323635643265316361366134343239 -36366539373838623631313436366166623631313364363764386163373434303762366235663266 -66613564613263376461346361626434333134343565326434376330363839323361363537623638 -62346664306566393566623163383261643564373130333934366263646630626330373165633433 -62626461643834343763393733666633656232333261663939363562643533373762643263316664 -66363431313766616433623930333734643265393735313266306365386537343136363561666332 -63313735643034333031316666316561366566333730663461613339396534633630313163376566 -34313366363933393137616332393834613430626261376337363139303331343832383036306464 -36656263303937633139633333616332303839616334626162653364613462653235326533323866 -63353132323563623436653762646437303439383033393131386235623036613938656333663935 -33353061636430663336656661343463663834633163313639366638353730636336303465356234 -31663134383434323861313131643264343832666334363731616635666264623834663631376462 -34343239626462326237643064383061323335353130313261383962353037343365316432623134 -61626562396632643862343039353365663036396536616366346562323134383031313230343263 -35386633366265313636303465373237386330323634643434316539326666633033633233653338 -39383761353562326563393932353464353531306662376664613434363831353164643636613738 -34373462303637623762346461613436316461373638653063353762653637373262303633346133 -34396266326164343133326632633039616539353433653733623531663364643432316538653039 -37353136626532323430366234393031376135356137353830353330653163376336393934633463 -62343137353932626332656634303964323130393337656133653332623931353966616266356561 -3866643066623532376562353063366132666336613538353965 +36343937393139346165643333653139653536336335646232353236643862326434613366626264 +3464336665643437346463353335323537663438366565660a653138646532363164393932346439 +37646631346365653432313639376634633137616139313437323732383436343661366662393963 +3933383539616161640a383433373765373036363937333937343162363965393837373163336539 +37303461356236303764373062396664623962306362316562323935623631313035363636323635 +66383666346333386332633333623737386561643163356165613961653163343433616635333765 +64363761336331626665653763376566396566306265623262373134663134656131633231396231 +39343662653466633865636664626334323639333134326637633330353863356233333862346633 +37363035373365646635666236383063363063623962323835376336373331643062623631613763 +64616430663365303166366261643935623735613464653764313964636236613834633232636335 +65376233663163306665623033613366356561353535623235326334393336616634323830356331 +65613437643663306165306164323631373436633932613637333732393035373734663466313632 +32303930336534326265336666626262303034383835653132373635613462353064663964326336 +64643462383139653764343133383062333564343935653232616230653365343265303131366237 +66633865323666353530356634663330623130623465633961363938633835343762646165393632 +66326139613466663162303664646436316233363364656434333935376561636531643166653131 +64373239396435653633353038656466623763663332633466373761346136363661376432383837 +65373931356637616564643234383035303563666331383230666264636439363830333338653562 +30653338373362393731323362373839633865613366653034363631376431656130366136386263 +34663538336564653063366266626131393338326661636133323832653261356661323264353630 +66653934643435633430333461663535666437336164346461633430303763343164626265623533 +39646630393135646335363535636231653438303539623764396533316437646433613964363732 +63353237653934633861363239323339313334616464623661613237363862383733383338613864 +61636430666563383764383165626237323566323739616461356361353338366338353766363838 +39633764313762623163323364663334313365336262653832633963663431353465393334373063 +62646635636630373039353662633434613535303235326162663566316632646334306663373265 +64356535656536393764343432346138343436646537363638353933313937373835623131323535 +32316263643037336232326137323433356437633862363062373961643430656362316438373633 +38333164326162663363353935313731333966383832613838333137383635343963346161386663 +38373638336531626639643434326562353162663639346632643333663939363834343039623266 +65633964363734383532306261663431626137383665383665376138303064623431343633333364 +30313366343737363434353361363036376630626563653632633665336431386232366433313964 +62613261306136666262656332343361363635303861653262636430333238653961623965306636 +62653864636139336230346331313037336537646639323539313266363137623662633334376335 +34633339646665336135303636316162323563333430346661646434663863316537663232376666 +33333365643333643234636238633030393331386636363562303239323839376634323236616630 +32396432303132393637646665343438613263323263323666663463393535333963353036643535 +37386630393934653131393034666165326630626238393131343135313362643865646333316232 +61313864616632616239386539623931366230383566316130623234366139623430363631633736 +63653431326433376165353764376330393937643063356538616166613738396638373835353932 +62376339626366326435316631643439613065353965386364616564336430653866336465633763 +33656462363138663161366531646632323635393338373936666333383736643034353564336438 +64333762396262313439356265636365323766343730626531306531373235343430363363316633 +61376235316264653263356661346136383833376134383862653363333636613237386639613839 +61336635353361306335616364366534363364643463653936656639346566366635626130396331 +31306238366636396265643935643334346261313564386236373266316232353333656430373261 +63336535626133623563666437613432613332633662653131336563333432363361353536333164 +31356230306136303165383637313761623131333230316539633731393562343966616533396139 +31646666373832333331343738313464643838633662336631646437666433653531646466626664 +64373864323165666538393733643764383235633864336237306336326562333434623662363338 +62353234353862373539663332353361653630316435666438366335306131663637363330623832 +37346237313539383331363438326234333936653563313361363465373262316137656235316230 +64623264323237626666323162373661636563663363643662353165633266336334393532663232 +37343936326563363235633835613563643861613866363063636436393239363461356566616432 +36353562363836636130666532326237323634316435333732396566363430643238663033656338 +37666134363761383763373633666566653566633337633631316338393430333662306566613238 +36396636313161306135623164636330383034663032323836346537616563303731303766636330 +37393230323366346532653165306166383930323035343938343536646562356630393630393964 +32393464383165623630353139323164303862653137616665326138346433336165336634633234 +64356131643366383331623933306366666534623163663166653663376337653261666430633762 +39653534373366613462666463383361313962393832373632393465376537626630353835653463 +63623866643561663331353166383031633063376331316237323538393663303232363730616663 +63376331336266373235303262316136633830393837373431333165626537623932316536343231 +30323761643361316233336236303337646634356532656233323933313362623766343464393037 +37646366623036643134343864303831336163323632643164613834373461636664663365643464 +34373366636263313866323133346432363732396438323965323438626331316530623865316633 +32306636643665356665643037653137623266333634663734663933333764393036376663633864 +30626462306136306635336435646564643663396663343136313665336439636261636365343537 +31303735383632343336333233353963663534356237656663373532376264313430326339333339 +35346637303033663462613334313235323936633230323765383330306263643239396136623463 +64373532636235316630333965666330333133623130306333363963333238303630323431636638 +35303765313239643334306665373639376461613564323333353831656532316262333139613861 +35303164396531633232383961616231623465396265353235353663333132633236373066343064 +33373335333563343762393064333632373632376231306336303535623633633131613739303064 +62386363326330613866396135333834366336313736663866376265323363366537306162323937 +66663139643166313034303430666133616363363333336164326131646161626235633831356239 +33343835616232663335656438366262656131633763303261306439386264633233663238366430 +64623763366465623830626638643235353834663763363734666635656463303565313732643635 +39393733623562613732323134623961666438373733383738663833353333396634363664313736 +37393865323065316661353534623332613461313733343431393966386263666334363232376634 +64303438323637343963306665346465313836383839653837373366633464343165633537313538 +36656531306335383032356466643632393631366361623531393639653432313134343162393937 +36333330303361306134306664356431303362623861313065323663653832663330396563343863 +32383038666261333434313733363733373630306461383262323265356235363362646636396563 +32383437616331613061366534393835323034636538623336363433363235613430383232653038 +31313465396561623362663930623632626236333632363562336537356332376263376437323033 +33666131366365663234386138316662333639306138323066636364313437333435643030363531 +63653564363931333635356165623738393730623365313932343834376233613239303239353337 +31373737353364376636643665666235663737303461306533356230353436313833356630326234 +35323732353832343863396231623831313963326562316433643337336565326630656137653062 +30656263393161383166303833383936396531353837636139313061303932626234356161363930 +36366164366264353738616237346633666539313734383465623965363332623537343539633862 +36656131326439643831373862373633366531613865356233613364383563623734326561613363 +39663536333963383261396132653830306636313161376364303537336138633764393236396435 +32633665663662373232383438393131323438326336343166303238366530663862323965393938 +39663162353237336331616532393236313135313461663465383432343932666337353235303135 +32626134653137333833643938623131636634636237396435383462393034653038363335613337 +66666334653337613135333239346137373134323266373563636231353631626662383032636230 +30633563313630323762393636383939666463636432326432646337373766356363303261613239 +36323366373134326230346634303837623664386330356139633533636665346164363763376163 +34643037356663666164613034636135656237356332393062313532353436633039383631623666 +32323662663365616566636365626364373937633633633063613632346665633835613732666535 +33643633643663613732653634386439336666313238643835366431613232336265663965393364 +65656637366533643730653936666337396531653238646333383533633363646361323931636666 +33356238376136643962613433396161313536366237643532613337393231373531343137626263 +38323538356434383439303930383736393634666537393933366666646161336239326530363263 +65306432333865346562376236356534323262643864623661663066663035366132623038616562 +31333030656364353231613633663637366632333633303834333834663034643135616537323165 +39303063363432663965373133656435383338393236653435386439326263623565613136386530 +63656564303464373164343766323066353061386237626264663231373362653739633739313661 +36613934633834333839663835333733656538396539616536613163653138303765616532616231 +37316238643666653130623436343765383363313561373162636464323237633365623439343830 +65306337633163656634663266623266613162663637313338376336383563396239333162396530 +36356430336538666538333866333561613365616335636164363464383866653861616336626162 +64326132303862383333326666373135613835366135653838313366663339396234633136653634 +65343664313363373565663065346133343237653966313932666638633165333936363364306462 +31633439626464373165626138626264333936656436313762313232386564316335396164306637 +32306463613866656566333465663566636431626336383166626366366331356631353634623961 +31643836633637656433333036313865383465376162363432346538366362376361656464333936 +32346131623461323736623263303465356365393861636635646364343765623164386238303236 +64313561363639306438613733383061393337396630616435336630393461316434376630313733 +33383535643966623064646134656636623061333034333932346135303834363337653639343836 +62653935366435306630346536666563633435316638373537626662366339383836363335633766 +61323832616538323038343635633034333630376333366230643430633465626337356231313731 +30323933656164666431656565303434393861636435626231396535333035643763626164643030 +31613533636232363738393965363439313665323038393662323338613730343663353038373634 +62373930623239303863356266353261353862306665616462306335366232663766623864616637 +32366236333531396237333564626137613638623633333637316130383337626632653931646637 +30313531363436653832356430346538383864376361353034363134353637303931393938366465 +32663261636132646236663964313230653032303161613065306532353830346166313530633563 +63383333336437656162393331633862326531366531316538396234623962393833306465333863 +30353565613964616236663139636263356138616464663461643266336139353464616636376338 +64613262343961656132376564326163373638323630353366663661346465646333323535396435 +33376662363037343237393661323239626532326639386637663236633564383030376537356139 +32323961313934303265613033363339323665666462653332333734306639376263396361373435 +38333965306533663664346262303837363533343862353162663335393233383230323936383964 +35323139346663626435646561383937653262386333323830383030336532633961626332386561 +39666532383164303861643132666132663463333630663730616365623336376331343136623231 +30653130366232663965336537303638343262316366653138623335346537336463383462646633 +39636266613765636130393138663263316664333066313530303635363933343566306632386632 +66303535313730313734343137366337356164356336343966623536393438336535666637396132 +63643238393531623564393266626334366133633263316335353365326165336664366331363062 +61393063636665323262333164346533313833306633303130386237633630613361393463663839 +66383264316562656235666535376332373962333661383636383366633336653836396462306362 +30306366666366623036316432306435646435323361326661323263363435656337356564633535 +34643433333934313964666566633831333137353534366638353234666432663665353135363036 +36656662373964613165346139383632333436323835343530303238313938356662366665356238 +35623039623630333032663139636333633037376633373139353562346634303038653462646635 +65333939333634646135663561313666663732633964373666643732656432643462316337646338 +37623664376561316261633237363631623966333439313064666639326562303461663164653537 +38643832333834636335353637626566386435656137643437626333386562656139343138613937 +65656330633864616230643262376465363033393533633337653564393563333364616635363632 +63346663386238333737616163613262653663633661343336633839343338633561313764323435 +32666431386330336162643236613266663937643132373437376539383038636231353038323335 +37663535303637376666346461343063646232636337653036393535383832613435373430333361 +39373565303861333638353134366466333630316662356635343534356461663366636636376262 +31656132626436353737353863306235313339313663373331363465653362313863663033666437 +39353933326430346661376434623662396131656337373433326639626339383161343239623437 +36383763366632393636383165363838316632303666363338626533663036353633636466636666 +62336339323564353435643434356564643736363866393233663363653130353264363733343066 +39306265656162316365613664376333346236366337373061363730313536313064383234663632 +61393439366566663334356631643164356333643664663833666663306335346530613833326137 +37633764343863353735653366663365376562383439626238363931623231313736363738626338 +34326637363635643130653765326161616563333633393361623766333962643062663865636232 +35623234613338383933363837363932303231633835333337316365373938613539356130666433 +66343134666236623365636162656531326533373663666633643262613637336136656132663762 +32653232363162653261323436326466303732346264646436666464663636626139656664363937 +30333562613364313435333861303230303332633034313164346465396431663832313936393962 +36366134333061373330613031633066343963333133346661656238366235396364306364353234 +39323631316564316232383661663937386661666434363837353065336266636231393864303635 +31646666396530303230376134306433663836313332306438363236323438383336343961383464 +33346639623436653830343762346561353064396665646130666366336362356365623235653239 +65376230323265343934653533346139303936333631313433633165623834313034336639396435 +36633330373230363362373630303631393333336163646434653431653739346365316162366430 +36626331303464336663643639316437613262613436613164333631333831326330383836343639 +34333333323631373635633436643830383730393032393566376561343238316539386661656537 +65643233393632393137306666396339376334626536366336613762666466626433326563386534 +35313333633766396162366539326464383565613334383166393038353136316535623035313531 +33313334373938643930303034326564363032346261306133303136353762363133343232656664 +35343963653465306165306334623136643533383233306361326565646366313732343035323461 +36616334326430323932306234303537386662613066623431343662653334643939313866396463 +31643934386335636337383532333266366366663430663230623130316663356431636462333464 +38383035366566373136656262343937623535306438333435343662393236663439386563623862 +35663532653330346530323263306233383266383836333730653263303161643036656665613439 +32333639633433633737396239636138366435663864646662636562373063643831393465353736 +32666134323865623431623961346332306438346532333330666231323431396166653739393163 +35376663303035343363663131373363336635656163366332356332356137613039396534656637 +61616164306461386332363462396637656235313463616463376237393737393334613864373866 +32366438386434666136366136393339303534373465353035656437313937383335373432636366 +37323439663463616338613964336139343462323261363236343835666663343436323937393431 +62343239333632363632393738663431373230636265356666356637393632346439306235653737 +64326136383764613134663039633837623730666334393833326563383433396564656562306665 +65356361653934373832653462373837356330663866343664393936316461346264396439303034 +30633637633165356539653564636133626561353862393438653838663635616235323734626663 +35333763333964316630383565306331336364346163316539653437656433663863393138616365 +33653437383664353739383636653463623132303533623030656466386565653964663062383466 +35343336383534623564363536393766623536323031653639343731366664646636306464316462 +33343766376165323136656633383862323761366263643064353935336432356466666133326230 +37663532663235343065626631353165626466636535333131363266643765373737626238323166 +64613964396261373161303064366236313632626135633164393235383633306265383931626634 +39346536346334353866623332623864643162373830323863666364643637363931653738396530 +36316431353062626437313863653133656430643830396639663161323435653531356136366637 +31383231666638643538336163386236373737346234346562316634313133393135343961363832 +35626135643035643236356266646139633736363634663961336362646430656630323434663130 +36613236383733613661613866303061376264346437336134366661613762343936353433326335 +63626431356261343233323437326635343434633431353361643864363639663936303463373264 +62626335323137336435633966623236633963643234346334616632306338373230343565393637 +61326462313437633064316664623461383639393838653334373739646630643438383737306537 +64383163653832396263393136636566643839323532363836636337353762316562303364386232 +63356237663130356332346138376532616430313865363064313835323537386331356437393038 +34646235373931393933306238343930383637313263646134383361323737373731373338666536 +33366363396632643562313630623864303232633635653635346134303837323632316634613634 +34383161313161336632633965653266653432666164316234333337663637623762346261303130 +35376566366663643466616638306561366231326535346339323534616363633938306565373362 +32336238633032633262353830353362373461303232326563323862333161343136303732353430 +32613964303766393062333938636132393339643065663932376635356635323066643131613366 +32663364633934336430633539656638386330663433353962373664323433656465313837333837 +37346662313763653863366266623136393165386636643737303363643535343034316536373462 +30653363363466326561383564353563616166316237383765306437623235333231663138396666 +32623233316134666165623063356562616534666637336166383433346435333363333362666661 +65613463313238613436396165626165666566623734666566326538356535363538663963313631 +62373032373663643365353234643661356462386339656261613665633763356336383531623265 +64303738343864633739356465373162313866303938356339633434393863376637623733343538 +30393036313132386136333863343566623531313538346436376331313038623835373263626130 +32636463313737633238666535646537323631633537616236613037666530383665646538316634 +66623636326630393965363139383166313437623764326437643130396463653563646330663539 +30643239393364373032343432616231383433383935383539363966373465343064626463346130 +30636439613038383738396530383861616137333837333633613736393565396363393334663330 +38636531396163636664393464323162326339333034666236303763303831373164343833366634 +64653638656135646462363830313835653135323333646261663762643534623461663033666162 +61393032383535326666363936333365306535356466373264373931663833633362386234303730 +30636436313433366639643230653164663935306338336263333465313434396234623833633432 +62346233373733666466663030323639316439336333326361353461316437366136356138356231 +35316135326534653135303866386264613633323335396337326436383339666130333833646331 +30613432393065303966616234333436326436323236316531323364643266396366646464303036 +33653838343432323866363036303735323036653333313030353736326162346662613537343462 +31633532343732323437353030353438323130346366623539343961653034643331346164346636 +62316666396330366330643162376539303538616336396665613237663935356530356636326432 +35326236336163656235656264643739376665396636646539666438393330633436636265313539 +62633663303439393433313564303362336565376636613432376631643064366263363562663137 +30313663633336653632633663623339643430336464353232366163343838336337396635383433 +38353363643634326230383736643466626364656538383961643262316438353730333735636463 +64346466336362646134386631646336366437313565346561336136336632396639613364646335 +38396162306334366266313435393530396566633834633131643566333032323531306535333161 +38646463646138316537313263316135303964346363323332623933643633633261643863373965 +63366161376431353362386436656462616233653733343462323563663033306534633065383363 +34316232666535643365626166396532363337636361666464306662643765393061323535326233 +38356663356264656361663866383630613564333530623766303935623139386264633262616237 +61333936373433333231336566383530356161353064366230633735656533623430616164313864 +32383033343966633231333635363766616561396437623232376132373166396135353962346563 +33373234396134343830363964376531353466613136366436663062363131613137663165303233 +37393534376134613065303362616530626437353163633032373462386438326336366334343466 +64373234313534626636373138316363383932323932656536313932363938616231313366656666 +39303437633261646435666135323136343230373236626662376663326438343563316131346137 +38386361373933326661333539666261313764383364323939616239386636663035363138366563 +36366434333066316235303739386533303834323839396562393631323062333862343137633734 +34643534636434656666323863303463616332623433373761376639363332346537326566396562 +65363233383462646565663532376135636536656133333737346230393530663666333936326636 +36346139303839636535653334636364343838356466356362643430303635616133343066333763 +66373162623261393166633230353966633963336435396166643539613966396234396237613161 +35336635346432333830323139313662336434366434616136663330373136623034633438663830 +64346361663731353537356661343833663334356164333634333064613639356332366661386536 +32656164353066316533326463376130373130663463393966363936316236316362656362383461 +33303265353765323836626638313639396533646239306264343963623131323435323536333739 +64393765656438323332613464333965633264316232663330643036343638373161353161383063 +37356163663034663337333131323463393739633964626465333064636636376534666530646363 +61346664653530353262396461353338326564336538373933666261366133316562333137643063 +62313238653933343863623531613637386631356562623165393365383133663138396239656434 +65323566333233326238656431306562643337333562353765326432343464373636633336663237 +34656236383163356532366135383236356232643061363961646136336435333630313334376433 +63326534646163333664636634633131356130313836356664306232626564613237373232633762 +32356639306138396165316531396537323536643038383539663664663931656339353439636366 +30666162373163656162303764313737326663653435623063346239363965333834346361383338 +31373036653637393038666233666234303433353730663763636531343338663736373264376566 +31363033386231653637363434663464643330656435373232643739613531376164323833303531 +61613833376138333165636331323264613764663433376566663336363933623538393633346564 +63333933393838636461383936663334646335353031646532363264623838666635316130356531 +62353238646335663462383564613361346434373033623330623339303163663931376363613438 +35363038393333353932343036346239336466633838336339616331313133626535633363323332 +63326135306131373035343365313564633561323231353564383939363664616433326464343964 +62366239326438613331393564653165633864326339323566323965386334376136333230323765 +39336165386161643364653937616366613133303236373465383736336536313761373236373032 +34363430363735356563396431353631616664633836643137333166643262333334363566333465 +35653633313636336634353964366439623663356335363631393538333562393338613662333536 +65393339646238336566346335383539663166623534616138326235666635316161393436313063 +37393861346232333061383962396662643232373633393035633831376539303066366461333837 +31326139323964386334633463353164343339336466313236303231636430633831386534326535 +64323262613666336637653637336438386466303932656137653763366465373537623130313733 +62393734363665373165303732623730366531623132333736383164626234316363633230633735 +61666534383034303634326464656434326362353431316438306132643535386438383162303165 +32353365633562646438353364393936623432336132303436653137653030323065376537633362 +39323033323765323832396131306438386261323337303139356431626338373432636166613539 +37653832393137653737656532333438313036363862316666633765383065663564623932623332 +32653864356162323365386562636465643364363365356437353930376339376266316534616630 +36616130633730626465656438666366366361326663333062346539313939356536646461366432 +32623337353630633032656439383561363361323337663631333031356465333038326663356438 +31663164343035653061333030346630363736346265623764343062643264613234636238393833 +32366334643430373730633939633564323265646363356534353235616236393830343462393934 +30373737313235393337303530633436333031383231613337643663356265663439646362376536 +39663866306466313461633962643833343261663530343733643234376336656464616636393836 +38333836386635383037323331663766396239316538386533363162643961303735643131613639 +64653962326434393932366533643636353233646533616534393634396438323965343566616139 +30653332636266333436343539376565346166316537663066333533626438666635366338393834 +64373830356332623738306161616338346663313863386464386538323164386439373262356634 +61336239666566333036353065383864303939613831653538323036303164313064663331333632 +34613139366234343133656565343562613963353333386162383736323365643766663264386630 +61386563313363356333303864386564306431313230303761303330646633383133306338343766 +61313037326439383263373637656564636437613230366133646461383737663765386537343461 +35636334663831316133376136303736323833616666323365646337663130303331316536376665 +30653566343330323539336531333366343766633634353438663062316165356130303234613966 +30336564616566386336613965316539383563666439336565373636393362366638343233623561 +37363766383535393433386236303365373130313765356238316139643537356332363630376265 +31623766643632323265303638636232663065376230626634356263656261663034316165306635 +33383062633866333064353031643833386331313636646663373332636565356133306366613663 +35363634633531383636646631663533643732353666623061343336656438636439396231663537 +35313866333538353333663939303763363965306637366262386335623138303531346565373731 +64313339646333636561626665396165323834326537653066303465393831373432366534653935 +36316261663038623466663336303930666165343166356564393931373235343932303162323532 +65393166656561386665356538656136313165363036663663346465623238633864393264323163 +37303562353462326166303035666437303836646630656464626166303631396561313538656638 +31313039366332393735626336616632666531633239666232663839336662393535316165356131 +61373932336562393837623731373462636233353465656633633466613664633135653261613262 +62393466616332653232333265653339303634356630373866333361656461386433633865323238 +30643536313731656462363766313861363963353764383962393664306462643038333036313932 +62303338646430326461393236336430326534656166386165363439393861633136393833653161 +61373132393832363162313962663563623037336465663430613338363736383638373933663438 +35346430303931383533366335303830646661393761333935316138396635366632646166656438 +30396334313534663266646339393632653461393536656362616362633831356334353965336231 +66343438396430313731643732363533623961306139333361333332323934653230643361386266 +31626463346264656138396436663035653939363062386166656566333732313130653032386432 +33323366353330333031663233363839316230646637303434373535653832376163623737313464 +61653866666538623165336431643765663163316337333361663564313637613937343637376639 +62313062303437353635663235656466663034303830313439346265323632343465313339343335 +61383037646465366132646533376235383936366465393139373061393334653234313439353536 +65323330343337616664363938303438626534383230353035303734343966336435366139363462 +39663236666634663466316539643436303661656231656665626639323032373937346535663062 +31373535626438333762363731303233313631343438316264663430363064333563393161386335 +66623662613963343461366161653662666165333363653936353538316365656132363363376538 +35323763373137653666613731313364373938633039383265303066633535653734633837616231 +64393132646464626166346533356661653933633731343739616435316166366531643932623665 +37346363373665643231666138616563653830616431396136646436663232626432363966346535 +36666532373761623134356464363834316130346464346366343933343664623663326532363539 +37386665653739643630323662653863616235636433643066303432373333666666383764306334 +35643534303837366234336235613266346634356437323132306536393535643537663235306661 +64623963616536323736376132653065396530623036306237636564303365336136646161616335 +33336330643965616638386634626239353538343737616531636330383339393265613030326137 +32303534363638333763343035663665313932643631613531376237383833626261343031376530 +38626365336665653263316264663535373236303835353462383734313536366636626337306232 +33646134626461373335323738313337373637613736666432346533323563386263393932313964 +37616538646530633935303734623361316635316634346334643661393939313038396634663266 +39653035353462666135663432663764626534663564396430353835643130623833653063353135 +38333939623334343639653239316431616361336166666534323830353934343237393830316663 +39333464666330656264656566633832383532366538313930346364613138363535356532633639 +31643335656435633437643565376236303066666266616266363138613862396433356263323535 +35376634653933333639356134336464626131626630633365343063393834356265376665626332 +36396362613931323236343434636665393666323434623236383462663439353233353334393563 +32333965316662386331376136366464386633306231343263313637326164313366336334656434 +34326464626435363239326466316164316664623630343636326334313632326536343739346636 +32333839633761363364313534663134306533663062343234366666303337613435343662633866 +64333633623134666331336137653530326336386530326331303532336637626163306637366638 +36343330633439363162366232363563326234656632303438653161376434396238663366373934 +30396564303831643361396330363635666535363235353363303030383963663034663336313839 +31376439313633643864646262386638333365613862313237653238376433343961383266616338 +61363833363939306265646461326537363063323835613438383034363838386461303036333738 +39613939393861333333643565646237626334326435656664626261636166633433346531346164 +39393130313736383465633432313266353835373238656539343166303731363536656566623362 +62396339333636643864666337353739633737303938326435303035323864643132316136346564 +63393961363665383530626533666237653032636337306635613136353036333534636534353430 +32383534643332666364323539333263353435333635633233373932666661656634333837386430 +63306238396435616464643833353333363662373366346265383133666638636163396634656432 +38396461336238666236613335656135653662373764363737666366353336393738656562306332 +63346237643638383036656635643263313666323430633063623561333266333334336237656436 +33643830393032313532643766373435396236396164366235386464666265636364633066363031 +63333261323562303562363262623538323531343836663230623137663330346464396662376363 +33316462316234306336623665646431643063366563363935383134326130656265636363383839 +39396635323633653331646234623862316538306239666334353039326132643066643534396236 +38396363363364336239383739366163376661393764386664626538646637383835366239653666 +64393234636562356335373938313662656162636162376533666233386435393534356364623930 +61396361313233336133313436333837376166333261646434616366646463396664666564363436 +31643434653838356635623131323931306362363034373438306437383131343432636337386337 +65366336656131356130636136303265646436363336636337376439663831393466343233356433 +32653831626166363933363165336563363539623965333362306431343635343433616664313131 +62353932656562323332323531303766666661656435366635336331613435346662313661653862 +33303238343964366562656265306231386131643034393861386339323130393162373835353466 +65363066343236303561383236626236346538663133313064346331636138336564336534613836 +35643734653562623433373965663530376334393965356632363435336565346163366363346331 +31373836303833386165666536653232383138373736353334393033656634376136346430663138 +64356434333665646430393865656433383335653530363761343932626339666634376138306663 +36323666613965613436396462373436363861626333636331613865386535383561613230393765 +31313232326634653861383363313733323433393164356430376135616362646466343165326139 +33623433366639636338666363633834616330633832393534373030366362663637396239353634 +61646663646161323665656336393439616265333866326161383631373463393133363936646330 +65366132356132326634643232373061643865363866626537303665313263643266316535326336 +34353733623135376332333965333765306637303831386238303634663166366533323133356661 +33356462643534306532353837393561626533363037373934396430306135613339333030653563 +30383564356563616361656563333230666363336132613062373433313436356166363838383434 +39303736366166623564353465376238366564653639353862306463623536666461666561316637 +33666431323232656638373963326138373361353064656235353830373461306635383665363232 +39396339626262616130653563356339613439666635646131643466343561313561623335363336 +64346136383466383365336234363335616336303566636534393339323034366161626138343632 +31386366353462666532373933373537313465373530643062346633633863393334616165333033 +61323434326137383763343335353736393965633761656337366338333032643462343366333964 +30613561653632303937653938336661626635623536333439313136303330333031366262643133 +35396639333333376466346262633937363066646536333931353035316434616131363961643134 +34303263653064396563336130626436656461343864363730633264653530376465373533323965 +63613162626130363934393535616663363833326236643538373533346437306164373630303062 +32663036366335373832626262633162336336393138303265363766666365336666316331636661 +63313862613438323236663162313937353334383333636235643465623039633262653336326434 +31393438383031373935386234323839303135633739383165336438363032306632346462326463 +35656232356561343535356531346437653062323732303433613131633133633132613732333430 +65333536356364386235356338376639303336653732623736313364343738306165616466363833 +63353832373434316331333161633266356434353366356233346366303963666231303235626437 +63663338353337663638333733343834666434386131356163313266663935323539323434636134 +33613633613562386465313230393231643761326435623633623662333132356261313564623036 +62346564646532323037313262333365373036646533663461383730313337303336303730393530 +36333030346530636137 diff --git a/.talismanrc b/.talismanrc index 29fea45d9c..2fde473c46 100644 --- a/.talismanrc +++ b/.talismanrc @@ -10,15 +10,17 @@ fileignoreconfig: - filename: .github/workflows/release.yml checksum: 04cd4e69c67ffb0baa69892cb715aab8221d10587af0b2f27af38b2d4a968b93 - filename: .infra/.env_server - checksum: 618e1aad8e37a060c78ddca285899ae61cd2a6c584895a3c4dfd54f392ed6112 + checksum: aab1ecd35161750c0cc60ab49274fe67c54d54e65309d324daa95d666a6355cb - filename: .infra/env.ini - checksum: 46009eb5ccdcc992bfcc93feb40bb6e5dbaad5b57bec5a47ed4122a7ebbd243f + checksum: 8a4a01117d2fb9a54092d62cc5e07fd9418b2777cfbed8453571fe093b6a833a - filename: .infra/files/configs/mongodb/seed.gpg checksum: 7141d3836a9746d58ca3331b6ce2911a3b260131d47af6e402d39962c411eac8 +- filename: .infra/files/configs/reverse_proxy/extra-conf.d/alias.conf.template + checksum: 07875ae04a27fc2220ddf4d0010225d7f62529187328c93d6dbc8d008eb27ff7 - filename: .infra/vault/vault.yml checksum: be891b8d48595418ff79b33c402b28e0f824471459af9e57801e3131e1d28e5a - filename: server/.env.test - checksum: a25dd7f90a3bff45f97f82e253b830f54ca74ba81b7eab485c899ad5edf3d770 + checksum: c5b14d25731246734d6f024cf0b36936cdf1c84195d9096f379f9adccb85740b - filename: server/src/common/model/constants/referrers.ts checksum: a7205e7da4dca56dc3f989bc4fbbec4ed10c46b963446005a0b0356b0cae3a3d - filename: server/src/common/model/schema/_shared/mongoose-paginate.ts diff --git a/server/.env.test b/server/.env.test index f407c66443..f774fe4bfa 100644 --- a/server/.env.test +++ b/server/.env.test @@ -2,6 +2,7 @@ LBA_NAME=lba LBA_SERVER_PORT=5000 LBA_ENV=local LBA_PUBLIC_URL=http://localhost:3000 +LBA_PUBLIC_URL="" LBA_OUTPUT_DIR=.local/output LBA_DISABLE_PROCESSORS=0 LBA_LOG_LEVEL=fatal diff --git a/server/src/common/utils/isOriginLocal.ts b/server/src/common/utils/isOriginLocal.ts index a036232939..2d8eaca530 100644 --- a/server/src/common/utils/isOriginLocal.ts +++ b/server/src/common/utils/isOriginLocal.ts @@ -4,15 +4,7 @@ import config from "../../config" * @description : préciser l'usage de cet utils */ -const localOrigin = [ - "https://labonnealternance.beta.pole-emploi.fr", - "https://labonnealternance.pole-emploi.fr", - "https://labonnealternance.apprentissage.beta.gouv.fr", - "https://labonnealternance-recette.apprentissage.beta.gouv.fr", - "http://localhost:3003", - "http://localhost:3000", - "http://localhost", -] +const localOrigin = [config.publicUrl, config.aliasPublicUrl].filter(Boolean) const localOriginRegexp = /^https:\/\/labonnealternance(.*).apprentissage.beta.gouv.fr(.*)/i const recetteRegexp = /^https:\/\/labonnealternance-recette.apprentissage.beta.gouv.fr(.*)/i @@ -39,4 +31,4 @@ const isOriginLocal = (origin) => { } } -export { isOriginLocal } +export { isOriginLocal, localOrigin } diff --git a/server/src/config.ts b/server/src/config.ts index 0874b91699..c5a47a3166 100644 --- a/server/src/config.ts +++ b/server/src/config.ts @@ -6,6 +6,7 @@ const config = { port: env.get("LBA_SERVER_PORT").required().asPortNumber(), env: env.get("LBA_ENV").required().asEnum(["local", "recette", "production", "preview"]), publicUrl: env.get("LBA_PUBLIC_URL").required().asString(), + aliasPublicUrl: env.get("LBA_ALIAS_PUBLIC_URL").required().asString(), outputDir: env.get("LBA_OUTPUT_DIR").required().asString(), formationsEndPoint: "/api/v1/entity/formations", maxApplicationPerDay: 100, diff --git a/server/src/http/server.ts b/server/src/http/server.ts index 9889935846..292c5c6801 100644 --- a/server/src/http/server.ts +++ b/server/src/http/server.ts @@ -10,6 +10,8 @@ import { OpenAPIV3_1 } from "openapi-types" import { generateOpenApiSchema } from "shared/helpers/openapi/generateOpenapi" import { SecurityScheme } from "shared/routes/common.routes" +import { localOrigin } from "@/common/utils/isOriginLocal" + import config from "../config" import { initBrevoWebhooks } from "../services/brevo.service" @@ -95,16 +97,15 @@ export async function bind(app: Server) { app.decorate("auth", (strategy: SecurityScheme) => auth(strategy)) - // TODO_AB To check - // app.register(fastifyCors, { - // origin: "*", - // }) - if (config.env === "local") { app.register(fastifyCors, { origin: config.publicUrl, credentials: true, }) + } else { + app.register(fastifyCors, { + origin: localOrigin, + }) } app.register(